POST
/
organizations
/
users
curl --request POST \
  --url http://api.attention.tech/v2/organizations/users \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "15john.doe@example.com",
  "first_name": "John",
  "last_name": "Doe",
  "password": "SecureP@ssw0rd!",
  "roleUUID": "84e67f54-5157-442b-a2b3-8b9c728b2fef1",
  "teams": [
    {
      "uuid": "fe515723-fe2e-4959-a5fa-c4d3937fe7e4",
      "primary": true
    },
    {
      "uuid": "802a13d8-1ad0-4f4a-b880-9ace889fafa6",
      "primary": false
    }
  ]
}'
{
  "data": {
    "botName": "John's Notetaker",
    "email": "15john.doe@example.com",
    "firstName": "John",
    "lastName": "Doe",
    "primaryTeamUUID": "fe515723-fe2e-4959-a5fa-c4d3937fe7e4",
    "settings": {
      "autoCalculateCRMFields": true,
      "joinWhenIAmHostAndAlone": true,
      "joinWhenIAmHostWithPeers": true,
      "joinWhenUnlicensedPeerIsHost": true,
      "realTimeCapabilitiesOFF": true
    },
    "transcriptLang": "en",
    "uuid": "c74eb7bc-7b0e-45e2-843a-67305bfc4dce"
  }
}

Authorizations

Authorization
string
header
required

Body

The details of the user to be created.

The body is of type object.

Response

200
application/json

User successfully created

The response is of type object.