List SCIM v1 schemas
documentedList available SCIM v1 schemas.
GET /scim/v1/SchemasSchemasno 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)
Note: Slack's SCIM API exposes schemas at /Schemas/Users and /Schemas/Groups (not a root /Schemas endpoint). The base URL for SCIM is https://api.slack.com/scim/v1/. This command fetches the Users schema. If you meant the Groups schema, replace /Schemas/Users with /Schemas/Groups.
npx -y keychains@latest curl 'https://api.slack.com/scim/v1/Schemas/Users' \
-X GET \
-H 'Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}' \
-H 'Accept: application/json'