List the SCIM resource types
import requests
url = "https://app.langwatch.ai/api/scim/v2/ResourceTypes"
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/ResourceTypes', 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/ResourceTypes \
--header 'x-api-key: <api-key>'{
"schemas": [
"<string>"
],
"totalResults": 123,
"startIndex": 123,
"itemsPerPage": 123,
"Resources": [
{
"schemas": [
"<string>"
],
"id": "<string>",
"name": "<string>",
"endpoint": "<string>",
"schema": "<string>",
"meta": {
"resourceType": "<string>",
"location": "<string>"
}
}
]
}SCIM
List the SCIM resource types
The resources this service provisions, User and Group, each naming the endpoint and the schema URN that serves it (RFC 7643 section 6). Unauthenticated, like the rest of SCIM discovery.
GET
/
api
/
scim
/
v2
/
ResourceTypes
List the SCIM resource types
import requests
url = "https://app.langwatch.ai/api/scim/v2/ResourceTypes"
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/ResourceTypes', 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/ResourceTypes \
--header 'x-api-key: <api-key>'{
"schemas": [
"<string>"
],
"totalResults": 123,
"startIndex": 123,
"itemsPerPage": 123,
"Resources": [
{
"schemas": [
"<string>"
],
"id": "<string>",
"name": "<string>",
"endpoint": "<string>",
"schema": "<string>",
"meta": {
"resourceType": "<string>",
"location": "<string>"
}
}
]
}Authorizations
Was this page helpful?
⌘I