Conversation
User
Organization
Calendar
Scim
Get SCIM Service Provider Config
Returns SCIM service provider capabilities. Required by SCIM clients like Okta to determine feature support.
GET
/
scim
/
ServiceProviderConfigs
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
Response
200
application/json
Service Provider Configuration returned successfully
The response is of type object
.
Was this page helpful?
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"
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.