Update SCIM v1 group
documentedUpdate a SCIM v1 group.
PATCH /scim/v1/Groups/{id}Groupsno 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/Groups/{{$id}}" \
-X PATCH \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"schemas": [
"urn:scim:schemas:core:1.0"
],
"members": [
{
"value": "{{$member1}}"
},
{
"value": "{{$member2}}",
"operation": "delete"
},
{
"value": "{{$member3}}"
}
]
}'" ,
"parameters":[]}