User
Create a user
Create a new user in your organization.
post/user
Request body
Example request
{
"email": "alex.doe@email.com",
"first_name": "Alex",
"last_name": "Doe",
"organization_id": 1234,
"avatar": "https://my-avatar-url.com",
"send_invite": true
}Response
The operation was successful.
Example response
{
"id": 123456,
"email": "alex.mgr@crypto-inc.com",
"first_name": "Alex",
"last_name": "Doe",
"organization_id": 1234,
"status": "active",
"avatar": "https://my-avatar-url.com",
"type": "person",
"provider": "cognito",
"nrn": "organization=123",
"send_invite": true,
"metadata": {
"key": "value"
}
}