v1

latestOpenAPI 3.0.02026-08-06165119238.1 KB
Users

Create a user

Creates a new user.

post/v3/users

Request body

accountMembershipCodestring
email_verifiedboolean
last_loginstring
tracking_idstring
registeredstring
registration_tenantstring
session_limitinteger
foreign_keysobject[]
product_sharing_idstring
created_atstring

Example request

{
  "user_id": "123456789ABCD",
  "identifiers": {
    "email_address": "joe.blow@company.com"
  },
  "attributes": {
    "first_name": "Joe",
    "surname": "Blow",
    "email_verified": true
  }
}

Response

Created

Example response

{
  "results": [
    {
      "user_id": "123456789ABCD",
      "identifiers": {
        "email_address": "joe.blow@company.com"
      },
      "attributes": {
        "first_name": "Joe",
        "surname": "Blow"
      },
      "email_verified": true
    }
  ]
}