GET
/
scim
/
ServiceProviderConfigs
Get SCIM Service Provider Config
curl --request GET \
  --url http://api.attention.tech/v2/scim/ServiceProviderConfigs \
  --header 'Authorization: <api-key>'
{
  "schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
  ],
  "documentationUrl": "https://support.okta.com/scim-fake-page.html",
  "patch": {
    "supported": false
  },
  "bulk": {
    "supported": false
  },
  "filter": {
    "supported": false,
    "maxResults": 100
  },
  "changePassword": {
    "supported": true
  },
  "sort": {
    "supported": false
  },
  "etag": {
    "supported": false
  },
  "authenticationSchemes": [
    {
      "name": "HTTP Basic",
      "description": "Authentication via API key in the Authorization header",
      "specUri": "http://tools.ietf.org/html/rfc2617",
      "documentationUri": "https://datatracker.ietf.org/doc/html/rfc2617",
      "type": "httpbasic",
      "primary": true
    }
  ],
  "urn:okta:schemas:scim:providerconfig:1.0": {
    "userManagementCapabilities": [
      "GROUP_PUSH",
      "IMPORT_NEW_USERS",
      "IMPORT_PROFILE_UPDATES",
      "PUSH_NEW_USERS",
      "PUSH_PASSWORD_UPDATES",
      "PUSH_PENDING_USERS",
      "PUSH_PROFILE_UPDATES",
      "PUSH_USER_DEACTIVATION",
      "REACTIVATE_USERS"
    ]
  }
}

Authorizations

Authorization
string
header
required

Response

Service Provider Configuration returned successfully

schemas
string[]
Example:
[
  "urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
]
documentationUrl
string
Example:

"https://support.okta.com/scim-fake-page.html"

patch
object
Example:
{ "supported": false }
bulk
object
Example:
{ "supported": false }
filter
object
Example:
{ "supported": false, "maxResults": 100 }
changePassword
object
Example:
{ "supported": true }
sort
object
Example:
{ "supported": false }
etag
object
Example:
{ "supported": false }
authenticationSchemes
object[]
Example:
[
  {
    "name": "HTTP Basic",
    "description": "Authentication via API key in the Authorization header",
    "specUri": "http://tools.ietf.org/html/rfc2617",
    "documentationUri": "https://datatracker.ietf.org/doc/html/rfc2617",
    "type": "httpbasic",
    "primary": true
  }
]
urn:okta:schemas:scim:providerconfig:1.0
object
Example:
{
  "userManagementCapabilities": [
    "GROUP_PUSH",
    "IMPORT_NEW_USERS",
    "IMPORT_PROFILE_UPDATES",
    "PUSH_NEW_USERS",
    "PUSH_PASSWORD_UPDATES",
    "PUSH_PENDING_USERS",
    "PUSH_PROFILE_UPDATES",
    "PUSH_USER_DEACTIVATION",
    "REACTIVATE_USERS"
  ]
}