BETA RELEASE
A beta release is the first offering of the feature and may not be fully available to all customers. Contact your ReachFive representative for more details.
The SCIM protocol is an application-level REST protocol for provisioning and managing identity data on the web. It supports creating, discovering, retrieving, and modifying core identity resources.
Note: For more on SCIM, please see here.
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/admin/openapi/
This operation is used to retrieve information about resource schemas supported by a SCIM service provider. An HTTP GET to the endpoint "/Schemas" will return all supported schemas in ListResponse format.
Note: The contents of each schema returned are described in Section 7 of [RFC7643].
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/admin/openapi/scim/v2/Schemas
curl -i -X GET \
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/admin/openapi/scim/v2/Schemas \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Successful GET operation
{ "schemas": [ "urn:ietf:params:scim:api:messages:2.0:ListResponse" ], "totalResults": 2, "itemsPerPage": 10, "description": 1, "resources": [ { … }, { … } ] }
This operation is used to retrieve individual schema definitions by his schema URI.
For example: /Schemas/urn:ietf:params:scim:schemas:core:2.0:User
Note: The contents of schema returned are described in Section 7 of [RFC7643].
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/admin/openapi/scim/v2/Schemas/{id}
curl -i -X GET \
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/admin/openapi/scim/v2/Schemas/urn:ietf:params:scim:schemas:core:2.0:Group \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Successful GET operation
The unique URI of the schema. When applicable, service providers must specify the URI, e.g., "urn:ietf:params:scim:schemas:core:2.0:User". Unlike most other schemas, which use some sort of Globally Unique Identifier (GUID) for the "id", the schema "id" is a URI so that it can be registered and is portable between different service providers and clients.
The schema's human-readable name. When applicable, service providers must specify the name, e.g., "User" or "Group".
The schema's human-readable description. When applicable, service providers must specify the description.
A complex type that defines service provider attributes and their qualities via the following set of sub-attributes:
The most recent DateTime that the details of this resource were updated at the service provider.
{ "id": "urn:ietf:params:scim:schemas:core:2.0:Group", "name": "Group", "description": "Group", "attributes": [ { … }, { … } ], "meta": { "resourceType": "Schema", "location": "https://example.com/v2/Schemas/urn:ietf:params:scim:schemas:core:2.0:Group" } }