Configuration Endpoints
SCIM defines three GET endpoints to facilitate the discovery of the SCIM service provider features and schema.
The purpose of configuration endpoints is to provide documentation about features supported by the specific implementation of the SCIM API, in this case, the Eptura SCIM API.
…/Schemas
…/ServiceProviderConfig
…/ResourceTypes
The following schemas are supported:
- User Schema
- User Extension Schema
- User Custom Extension Schema
- Group Schema
- ServiceProviderConfig - This endpoint will provide the configuration supported by SCIM provider.
- ResourceTypes - This endpoint will provide the resource details supported by SCIM provider, User and Group resources are supported.
Learn more about Service Provider Configuration Endpoints, see https://tools.ietf.org/html/rfc7644#section-4
Each schema detail can be fetched with schema by Id (../Schemas/Id):
urn:ietf:params:scim:schemas:core:2.0:User urn:ietf:params:scim:schemas:extension:enterprise:2.0:User urn:ietf:params:scim:schemas:extension:customextensionname:2.0:User urn:ietf:params:scim:schemas:core:2.0:Group urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig urn:ietf:params:scim:schemas:core:2.0:ResourceType
The request to the above configuration endpoints must include a valid bearer access token as an Authorization header. Learn more: Token generation.