Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
titleRequired Headers


Key
Value
Example
Acceptapplication/json
AuthorizationBearer <your token>Bearer wV1MLk5+sFzioJw/3M5r9A==
Content-Typeapplication/json



Info
titleFields


Field
Type
Optional
Description
codeStringOptionalA unique code that correlates the user to an external database (maximum 191 chars); correlates to X-UserCode
firstNameString
Optional
Required
lastNameString
Optional
Required
emailStringRequiredThe email address of the user (we will not send email to your user)
localeStringOptionalThe locale that the user prefers (default: 'en')


Example

Info
titleExample
curl -X POST \
-H 'Authorization: Bearer L2Hth4lRwgHRBWtX8Hkl5w==' \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{ "code": "Code: 1234", "firstName": "Fred", "lastName": "Flintstone", "email": "fred@example.com" }' \
http://data-sandbox.datamtd.com/1/user

...