Create user
Foreword
HTTP method : POST
v2/users
Request body
Only the email
field is mandatory.
By default the culture of the user is English.
If the user already exists we do not update his information. Each user can modify his lastname
and firstname
in the Profile application.
{
"suspensionStartDate": "2025-06-24T08:08:36.771Z",
"lastName": "string",
"firstName": "string",
"email": "string"
}
Response
201 Created
{
"suspensionStartDate": "2025-06-24T08:08:36.771Z",
"lastName": "string",
"firstName": "string",
"email": "string",
"id": "string"
}