Get the SCIM service provider configuration
import requests
url = "https://app.langwatch.ai/api/scim/v2/ServiceProviderConfig"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://app.langwatch.ai/api/scim/v2/ServiceProviderConfig', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://app.langwatch.ai/api/scim/v2/ServiceProviderConfig \
--header 'x-api-key: <api-key>'{
"schemas": [
"<string>"
],
"documentationUri": "<string>",
"patch": {
"supported": true
},
"bulk": {
"supported": true,
"maxOperations": 123,
"maxPayloadSize": 123
},
"filter": {
"supported": true,
"maxResults": 123
},
"changePassword": {
"supported": true
},
"sort": {
"supported": true
},
"etag": {
"supported": true
},
"authenticationSchemes": [
{
"type": "<string>",
"name": "<string>",
"description": "<string>"
}
]
}SCIM
Get the SCIM service provider configuration
What this SCIM implementation supports (RFC 7643 section 5), which is how an identity provider decides what it may call: PATCH and filtering are supported, bulk operations, sorting, ETags and password change are not. Unauthenticated, because a provider reads it while being configured, before a token exists.
GET
/
api
/
scim
/
v2
/
ServiceProviderConfig
Get the SCIM service provider configuration
import requests
url = "https://app.langwatch.ai/api/scim/v2/ServiceProviderConfig"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://app.langwatch.ai/api/scim/v2/ServiceProviderConfig', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://app.langwatch.ai/api/scim/v2/ServiceProviderConfig \
--header 'x-api-key: <api-key>'{
"schemas": [
"<string>"
],
"documentationUri": "<string>",
"patch": {
"supported": true
},
"bulk": {
"supported": true,
"maxOperations": 123,
"maxPayloadSize": 123
},
"filter": {
"supported": true,
"maxResults": 123
},
"changePassword": {
"supported": true
},
"sort": {
"supported": true
},
"etag": {
"supported": true
},
"authenticationSchemes": [
{
"type": "<string>",
"name": "<string>",
"description": "<string>"
}
]
}Authorizations
Response
200 - application/json
The supported capabilities.
The SCIM schema URNs this resource conforms to.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?
⌘I