Sign in

Create SCIM v1 user

documented

Create a SCIM v1 user.

POST /scim/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://api.slack.com/scim/v1/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": [{"value": "{{$email}}", "type": "work"}], "active": true, "officeLocation": "{{$officeLocation}}", "title": "{{$title}}", "department": "{{$department}}", "externalId": "{{$externalId}}"}'