Get Service Provider Configuration

JFrog REST APIs

Content Type
REST API

Description: Returns the SCIM Service Provider Configuration, describing the SCIM features and authentication schemes supported by the server.

Since: Artifactory <version>

Security: Requires a valid Bearer token with the SCIM_PERMISSION_SCOPE_READ permission.

Usage: GET /access/api/v1/scim/v2/ServiceProviderConfigs

Produces: application/scim+json; charset=UTF-8

Sample Request:

GET /access/api/v1/scim/v2/ResourceTypes HTTP/1.2
Host: <your-server>
Authorization: Bearer <access_token>
Accept: application/scim+json

Sample Response:

200- OK

{
   "schemas": [
       "urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
   ],
   "documentationUri": "https://jfrog.com/help/r/jfrog-platform-administration-documentation/scim",
   "patch": {
       "supported": true
   },
   "bulk": {
       "supported": false,
       "maxOperations": 0,
       "maxPayloadSize": 0
   },
   "filter": {
       "supported": true,
       "maxResults": 200
   },
   "changePassword": {
       "supported": false
   },
   "sort": {
       "supported": true
   },
   "etag": {
       "supported": false
   },
   "authenticationSchemes": [
       {
           "type": "oauthbearertoken",
           "name": "OAuth Bearer Token",
           "description": "Authentication scheme using the OAuth Bearer Token Standard",
           "specUri": "https://www.rfc-editor.org/info/rfc6750",
           "documentationUri": "https://jfrog.com/help/r/jfrog-platform-administration-documentation/scim",
           "primary": true
       }
   ],
   "meta": {
       "location": "/v1/scim/v2/ServiceProviderConfigs",
       "resourceType": "ServiceProviderConfig"
   }
}

Error Response Codes:

  • 401 Unauthorized (Authentication required or invalid token.)

  • 403 Forbidden (Insufficient permissions.)

  • 500 Internal Server Error (Unexpected server error.)