Create a user
The endpoint creates a user.
Request body
Example request
{
"external_user_id": "12345",
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"phone": "+14155554193",
"ssn": "222233333"
}Response
Example response
{
"id": "24d7e80942ce4ad58a93f70ce4115f5c",
"external_user_id": "12345",
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"phone": "+14155554193",
"ssn": "*****3333",
"created_at": "2022-05-04T11:30:00Z",
"updated_at": "2022-05-04T12:00:00Z"
}Changes
Changed in 2 of the 11 revisions of this API.35
- ●
the
emailrequest property's maxLength was set to254request-property-max-length-set
- ●
the
external_user_idrequest property's maxLength was set to512request-property-max-length-set
- ●
the
first_namerequest property's maxLength was set to128request-property-max-length-set
- ●
the
last_namerequest property's maxLength was set to128request-property-max-length-set
- ●
the
phonerequest property's maxLength was set to128request-property-max-length-set
- ●
- ▲
the response property
first_namebecame nullable for the status201response-property-became-nullable
- ▲
the response property
last_namebecame nullable for the status201response-property-became-nullable
- ▲
the response property
ssnbecame nullable for the status201response-property-became-nullable
- ▲