Replace SCIM v1 user
documentedReplace a SCIM v1 user.
PUT /scim/v1/Users/{id}Usersno implementation yet0 runsNo 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/{{$id}}' \
-X PUT \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"schemas": ["urn:scim:schemas:core:1.0"], "id": "{{$id}}", "active": {{$active}}, "userName": "{{$userName}}", "nickName": "{{$nickName}}", "name": {"givenName": "{{$givenName}}", "familyName": "{{$familyName}}"}, "title": "{{$title}}", "emails": [ {"value": "{{$email}}", "primary": true} ], "photos": [ {"value": "{{$photoUrl}}", "type": "photo"} ] }'