- List SCIM schemas
Detail a SCIM schema
Provides SCIM Schema Provider Configuration
Provides SCIM Resource Types
Detail a SCIM Resource Type
List users in the program
Create a user in the program
Show a single program user by ID
Replace a user in the program
Update a user in the program
Completely remove a user from the system
Show information about the current user
Completely remove a user from the system (Not SCIM compliant)
List SCIM schemas
Returns a list of the schemas in use by this SCIM API. Implements SCIM 2.0 Specification.
Security
oauth2_as_a_server(Required scopes: users.read) or oauth2_as_a_user(Required scopes: users.read)
- US1https://partner.socialchorus.com/scim/v2/Schemas
- US2https://partner.us2.onfirstup.com/scim/v2/Schemas
- EUhttps://partner.onfirstup.eu/scim/v2/Schemas
- oauth2_as_a_server
- oauth2_as_a_user
curl -i -X GET \
https://partner.socialchorus.com/scim/v2/Schemas \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Success
Example:
[ { "id": "urn:ietf:params:scim:schemas:core:2.0:User", "name": "SCIMCoreUser", "description": "SCIM Core User", "attributes": [ … ] }, { "id": "urn:ietf:params:scim:schemas:extension:enterprise:2.0:User", "name": "EnterpriseUser", "description": "Enterprise User", "attributes": [ … ] }, { "id": "urn:SocialChorus:1.0:User", "name": "SocialChorusUserExtension", "description": "Social Chorus User Extension", "attributes": [ … ] } ]
Response
{ "schemas": [ "urn:ietf:params:scim:api:messages:2.0:ListResponse" ], "totalResults": 5, "itemsPerPage": 10, "startIndex": 1, "Resources": [ { … }, { … }, { … } ] }