curl --request POST \
--url https://api.attention.tech/v2/organizations/users \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "[email protected]",
"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
}
],
"seat_type": "recording"
}
'{
"data": {
"botName": "John's Notetaker",
"email": "[email protected]",
"firstName": "John",
"lastName": "Doe",
"primaryTeamUUID": "fe515723-fe2e-4959-a5fa-c4d3937fe7e4",
"settings": {
"autoCalculateCRMFields": true,
"joinWhenIAmHostAndAlone": true,
"joinWhenIAmHostWithPeers": true,
"joinWhenUnlicensedPeerIsHost": true,
"realTimeCapabilitiesOFF": true,
"seat_type": "recording"
},
"transcriptLang": "en",
"uuid": "c74eb7bc-7b0e-45e2-843a-67305bfc4dce"
}
}Creates a new user in the specified organization. Requires a valid API key and proper permissions to create users. The user will be assigned to the specified team and given the specified role. Returns the created user’s details including their UUID.
curl --request POST \
--url https://api.attention.tech/v2/organizations/users \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "[email protected]",
"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
}
],
"seat_type": "recording"
}
'{
"data": {
"botName": "John's Notetaker",
"email": "[email protected]",
"firstName": "John",
"lastName": "Doe",
"primaryTeamUUID": "fe515723-fe2e-4959-a5fa-c4d3937fe7e4",
"settings": {
"autoCalculateCRMFields": true,
"joinWhenIAmHostAndAlone": true,
"joinWhenIAmHostWithPeers": true,
"joinWhenUnlicensedPeerIsHost": true,
"realTimeCapabilitiesOFF": true,
"seat_type": "recording"
},
"transcriptLang": "en",
"uuid": "c74eb7bc-7b0e-45e2-843a-67305bfc4dce"
}
}The details of the user to be created.
The email address of the new user.
The first name of the new user.
"John"
The last name of the new user.
"Doe"
A list of teams the user will belong to. Each team requires a UUID.
1The UUID of the role assigned to the user.
The password for the new user's account.
The type of seat assigned to the user.
listener, recording "recording"
User successfully created
Show child attributes
The unique identifier of the user.
"123e4567-e89b-12d3-a456-426614174000"
The email address of the user.
The first name of the user.
"John"
The last name of the user.
"Doe"
The date and time the user was created.
"2021-01-01T00:00:00Z"
The date and time the user was deactivated.
"2021-01-01T00:00:00Z"
The preferred transcript language for the user.
"en-US"
Indicates if the user can join meetings outside their host organization.
true
Indicates if the user has real-time transcription capabilities.
false
Show child attributes
{
"realTimeCapabilitiesOFF": true,
"autoCalculateCRMFields": true,
"joinWhenIAmHostAndAlone": true,
"joinWhenIAmHostWithPeers": true,
"joinWhenPeerIsHost": true,
"joinWhenUnlicensedPeerIsHost": true,
"dealsEnabled": true
}The name of the bot associated with the user.
"MyBot"
The URL of the bot's profile image.
"https://example.com/bot.png"
The UUID of the user's primary team.
"primary-team-uuid-12345"
The UUID of the user's role in the organization.
"org-role-uuid-56789"
Whether the user is shown a referral screen.
false
The type of seat assigned to the user.
"admin"
A list of teams assigned to the user.
Show child attributes
Unique identifier of the team
"fe515723-fe2e-4959-a5fa-c4d3937fe7e4"
Name of the team
"Engineering"
List of keywords or phrases associated with the team
["engineering", "tech", "development"]Represents the Slack integration details for a team
Show child attributes
Slack connection identifier
"T1234567890"
Domain associated with the team
"attention.tech"
Whether team organizers can join internal meetings
true
Whether email consent is enabled for the team
true
UUID of the parent team if this team is part of a hierarchy
"2ccf9bde-68e3-4de4-bc4e-51b927336665"
UUID of the organization this team belongs to
"16b78cec-82ef-46d2-8213-5d3bb7d2571c"
List of child teams if this team has a hierarchical structure
Was this page helpful?