Sign in

Create user

documented

Creates a new user in your Okta org.

POST /api/v1/usersUsersno 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://{{$okta_domain}}/api/v1/users?activate={{activate}}" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"profile": {"firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "email": "{{$email}}", "login": "{{$login}}"}, "credentials": {"password": {"value": "{{$password}}"}} }'
Create user · Okta · OpenIntegrations