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 discover the types of resources available on a SCIM service provider (e.g., Users and Groups). Each resource type defines the endpoints, the core schema URI that defines the resource, and any supported schema extensions.
Note: The attributes defining a resource type can be found in Section 6 of [RFC7643]
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/admin/openapi/scim/v2/ResourceTypes
curl -i -X GET \
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/admin/openapi/scim/v2/ResourceTypes \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
[ { "schemas": [ … ], "id": "User", "name": "User", "endpoint": "/Users", "description": "User Account", "schema": "urn:ietf:params:scim:schemas:core:2.0:User", "schemaExtensions": [ … ], "meta": { … } }, { "schemas": [ … ], "id": "Group", "name": "Group", "endpoint": "/Groups", "description": "Group", "schema": "urn:ietf:params:scim:schemas:core:2.0:Group", "meta": { … } } ]
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/admin/openapi/scim/v2/ResourceTypes/{name}
curl -i -X GET \
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/admin/openapi/scim/v2/ResourceTypes/User \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Successful GET operation
The resource type's HTTP-addressable endpoint relative to the Base URL of the service provider.
The resource type's primary/base schema URI
The most recent DateTime that the details of this resource were updated at the service provider.
{ "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:ResourceType" ], "id": "User", "name": "User", "endpoint": "/Users", "description": "User", "schema": "urn:ietf:params:scim:schemas:core:2.0:User", "schemaExtensions": [ { … } ], "meta": { "location": "https://example.com/v2/ResourceTypes/User", "resourceType": "ResourceType" } }