Endpoints
SCIM provides several endpoints for managing resources. Most of these are available in the playground environment, allowing you to experiment with the SCIM protocol and test your integration before moving to a production environment.
This Playground supports the following endpoints.
https://api.scim.dev/scim/v2/Users
-> learn morehttps://api.scim.dev/scim/v2/Groups
-> learn morehttps://api.scim.dev/scim/v2/ServiceProviderConfig
-> learn morehttps://api.scim.dev/scim/v2/ResourceTypes
-> learn morehttps://api.scim.dev/scim/v2/Schemas
-> learn more
You can access these APIs either through Postman or directly via the SCIM Playground. However, before you can make any requests, you'll need to obtain an API key.
Using Postman
- Open Postman and create a new request.
- Set the request method to GET (or POST, PATCH, PUT, DELETE as required).
- Enter the API endpoint URL in the request URL field.
- Under the Headers tab, add a new key-value pair. The key should be
Authorization
and the value should beBearer {API_KEY}
, replacing{API_KEY}
with your actual API key. - Click Send to make the request.
Using the SCIM Playground
- Navigate to the SCIM Playground.
- Search the example you would like to try
- Click Send to make the request.