Sign in

Create user

documented

Create a new user in the organization.

POST /api/v1/userUsersno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl 'https://api.datadoghq.com/api/v1/user' \
  -X POST \
  -H 'DD-API-KEY: {{DATADOGHQ_API_KEY}}' \
  -H 'DD-APPLICATION-KEY: {{DATADOGHQ_APP_KEY}}' \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -d '{"email": "{{$email}}", "handle": "{{$handle}}", "name": "{{$name}}", "access_role": "{{$access_role}}", "disabled": {{$disabled}}, "icon": "{{$icon}}", "verified": {{$verified}} }'