POST
/
user
/
complete
curl -X POST \
 /user/complete \
 --header "Content-Type: application/json" \
 --header "Authorization: Bearer <token>" \
 --data '{
    "firstName": "John",
    "lastName": "Doe",
    "company": "Acme Inc."
}'
{
  "id": "01F9Z3ZJXZQZJZJZJZJZJZJZJZ",
  "firstName": "John",
  "lastName": "Doe",
  "email": "jsmith@example.com",
  "defaultAccount": "https://example.com/",
  "createdAt": "2023-11-07T05:31:56Z",
  "confirmToken": "<string>",
  "confirmTokenValidUntil": "2023-11-07T05:31:56Z",
  "updatedAt": "2021-01-01T00:00:00+00:00",
  "confirmed": true,
  "userIdentifier": "<string>",
  "passwordEqual": true,
  "completed": true,
  "name": "<string>",
  "superAdmin": true,
  "passwordRecoveryTokenExpired": true,
  "resetPasswordToken": "<string>",
  "resetPasswordTokenExpiresAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Value for the Authorization header parameter.

Body

The new User resource
firstName
string
required

The firstname of the user

Required string length: 2 - 255
Example:

"John"

lastName
string
required

The lastname of the user

Required string length: 2 - 255
Example:

"Doe"

company
string | null

The company of the user

Required string length: 2 - 255
Example:

"Acme Inc."

Response

201
application/json
User resource created
firstName
string
required

The firstname of the user

Required string length: 2 - 255
Example:

"John"

lastName
string
required

The lastname of the user

Required string length: 2 - 255
Example:

"Doe"

email
string
required
id
string
Example:

"01F9Z3ZJXZQZJZJZJZJZJZJZJZ"

defaultAccount
string | null
Example:

"https://example.com/"

createdAt
string
confirmToken
string | null
confirmTokenValidUntil
string | null
updatedAt
string

The date and time when the resource was last updated.

Example:

"2021-01-01T00:00:00+00:00"

confirmed
boolean
userIdentifier
string
passwordEqual
boolean
completed
boolean
name
string
superAdmin
boolean
passwordRecoveryTokenExpired
boolean
resetPasswordToken
string | null
resetPasswordTokenExpiresAt
string | null