Sign in

Create SCIM user

documented

Creates a SCIM user (v1).

POST /scim/v1/UsersSCIM 1.1no 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}}/scim/v2/Users" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"], "userName": "{{$userName}}", "name": {"givenName": "{{$givenName}}", "familyName": "{{$familyName}}"}, "emails": [{"primary": true, "value": "{{$email}}", "type": "work"}], "displayName": "{{$displayName}}", "locale": "{{$locale}}", "externalId": "{{$externalId}}", "groups": []}'
Create SCIM user · Okta · OpenIntegrations