Get service provider config Run in API Explorer
Returns a service provider config for Docker's configuration.
GET
/v2/scim/2.0/ServiceProviderConfig
curl \
--request GET 'https://hub.docker.com/v2/scim/2.0/ServiceProviderConfig' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
],
"documentationUri": "string",
"patch": {
"supported": false
},
"bulk": {
"supported": false,
"maxOperations": 42,
"maxPayloadSize": 42
},
"filter": {
"supported": true,
"maxResults": 99999
},
"changePassword": {
"supported": false
},
"sort": {
"supported": true
},
"etag": {
"supported": false
},
"authenticationSchemes": {
"name": "OAuth 2.0 Bearer Token",
"description": "The OAuth 2.0 Bearer Token Authentication scheme. OAuth enables clients to access protected resources by obtaining an access token, which is defined in RFC 6750 as \"a string representing an access authorization issued to the client\", rather than using the resource owner's credentials directly.",
"specUri": "http://tools.ietf.org/html/rfc6750",
"type": "oauthbearertoken"
}
}
Response examples (401)
{
"status": "401",
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"detail": "string"
}
Response examples (500)
{
"status": "500",
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"detail": "string"
}