/user/create
- 1 Minute to read
- Print
- DarkLight
/user/create
- 1 Minute to read
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
Post
/user/create
Creates a new user. Requires either an email or a mobile number since these fields are used as the unique user identifier in the system.
Request body example:
[
{"name" : "user.lastname", "value" : "Smith"},
{"name" : "DateOfBirth", "value" : "1970-05-05"},
{"name" : "ISOlanguagecode", "value" : "fr"},
{"name": "user.ISOCountryCode", "value": "FR"}
]
Query parameters
email
stringRequired
Email of the user
mobileNumber
stringRequired
Mobile number of the user
Body parameters
Array of object
object
name
string
value
string
Responses
200
object
id
integer (int64)
email
string
mobileNumber
string
identifier
string
unifiedIdentifiers
Array of object (Attribute)
object
name
string
value
string
channelAddresses
Array of object (Attribute)
object
name
string
value
string
400
User with email does already exist. / One of the parameters 'email' or 'mobileNumber' or 'unifiedIdentifiers' must not be empty.
Was this article helpful?