Sign in

Update SCIM v1 group

documented

Update a SCIM v1 group.

PATCH /scim/v1/Groups/{id}Groupsno 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/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":[]}
Update SCIM v1 group · Slack · OpenIntegrations