Get SCIM Service Provider Configuration

GET /serviceConfiguration

Returns the capabilities of the Adra SCIM implementation

Responses

  • 200 application/scim+json

    Service Provider Configuration

    Hide response attributes Show response attributes object
GET /serviceConfiguration
curl \
 -X GET https://setup.adra.com/api/organizations/{organizationSid}/scim/serviceConfiguration
Response examples (200)
{
  "bulk": {
    "supported": false,
    "maxOperations": 0,
    "maxPayloadSize": 0
  },
  "eTag": {
    "supported": false
  },
  "meta": {
    "resourceType": "ServiceProviderConfig"
  },
  "sort": {
    "supported": false
  },
  "patch": {
    "supported": true
  },
  "filter": {
    "supported": true
  },
  "schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
  ],
  "changePassword": {
    "supported": false
  },
  "documentationUrl": "https://developer.adra.com/doc/adra-scim",
  "authenticationSchemes": []
}