v1
latestOpenAPI 3.0.02026-07-142351,1971.3 MBUsers
Create a user
Create a user for your organization.
Note: Users can only be created with the admin access role if application keys belong to administrators.
post/api/v1/user
Request body
Example request
{
"access_role": "ro",
"email": "test@datadoghq.com",
"handle": "test@datadoghq.com",
"icon": "/path/to/matching/gravatar/icon",
"name": "test user",
"verified": true
}Response
User created
Example response
{
"user": {
"access_role": "ro",
"email": "test@datadoghq.com",
"handle": "test@datadoghq.com",
"icon": "/path/to/matching/gravatar/icon",
"name": "test user",
"verified": true
}
}