Python
import requests
url = "https://app.langwatch.ai/api/scim-tokens"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.langwatch.ai/api/scim-tokens', 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-tokens \
--header 'Authorization: Bearer <token>'{
"tokens": [
{
"id": "<string>",
"description": "<string>",
"createdAt": "<string>",
"lastUsedAt": "<string>"
}
]
}SCIM Tokens
List SCIM tokens
List the organization’s SCIM bearer tokens: id, description, creation time and last use. Token values and hashes are never returned; the value exists only in the create response, once.
GET
/
api
/
scim-tokens
Python
import requests
url = "https://app.langwatch.ai/api/scim-tokens"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.langwatch.ai/api/scim-tokens', 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-tokens \
--header 'Authorization: Bearer <token>'{
"tokens": [
{
"id": "<string>",
"description": "<string>",
"createdAt": "<string>",
"lastUsedAt": "<string>"
}
]
}Was this page helpful?
⌘I