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 returns a JSON structure that describes the SCIM specification features available on a service provider.
The response is a JSON object using a "schemas" attribute of "urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
.
Note: The attributes returned in the JSON object are defined in Section 5 of [RFC7643].
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/admin/openapi/scim/v2/ServiceProviderConfig
curl -i -X GET \
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/admin/openapi/scim/v2/ServiceProviderConfig \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Successful GET operation
An HTTP-addressable URL pointing to the service provider's human-consumable help documentation.
A complex type that specifies PATCH configuration options. See Section 3.5.2 of [RFC7644].
A complex type that specifies bulk configuration options. See Section 3.7 of [RFC7644].
A Boolean value specifying whether or not the operation is supported.
An integer value specifying the maximum number of operations.
A complex type that specifies FILTER options. See Section 3.4.2.2 of [RFC7644].
A complex type that specifies configuration options related to changing a password.
A complex type that specifies Sort configuration options.
A complex type that specifies ETag configuration options.
A multi-valued complex type that specifies supported authentication scheme properties. To enable seamless discovery of configurations, the service provider SHOULD, with the appropriate security considerations, make the authenticationSchemes attribute publicly accessible without prior authentication.
The authentication scheme. This specification defines the values "oauth", "oauth2", "oauthbearertoken", "httpbasic", and "httpdigest".
An HTTP-addressable URL pointing to the authentication scheme's specification.
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:ServiceProviderConfig" ], "documentationUri": "http://example.com/help/scim.html", "patch": { "supported": true }, "bulk": { "supported": true, "maxOperations": 1000, "maxPayloadSize": 1048576 }, "filter": { "supported": true, "maxResults": 200 }, "changePassword": { "supported": true }, "sort": { "supported": true }, "etag": { "supported": true }, "authenticationSchemes": [ { … }, { … } ], "meta": { "location": "https://example.com/v2/ServiceProviderConfig", "resourceType": "ServiceProviderConfig", "created": "2010-01-23T04:56:22Z", "lastModified": "2011-05-13T04:42:34Z" } }