List or Retrieve resource types
curl --request GET \
--url https://paradigm.lighton.ai/scim/v2/ResourceTypes \
--header 'Authorization: Bearer <token>'import requests
url = "https://paradigm.lighton.ai/scim/v2/ResourceTypes"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://paradigm.lighton.ai/scim/v2/ResourceTypes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"Resources": [
{
"id": "<string>",
"name": "<string>",
"endpoint": "<string>",
"description": "<string>",
"schema": "<string>",
"meta": {
"location": "<string>",
"resourceType": "ResourceType"
},
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:ResourceType"
]
}
],
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:ListResponse"
]
}{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"detail": "Unauthorized",
"status": 401
}SCIM
List or Retrieve resource types
GET
/
scim
/
v2
/
ResourceTypes
List or Retrieve resource types
curl --request GET \
--url https://paradigm.lighton.ai/scim/v2/ResourceTypes \
--header 'Authorization: Bearer <token>'import requests
url = "https://paradigm.lighton.ai/scim/v2/ResourceTypes"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://paradigm.lighton.ai/scim/v2/ResourceTypes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"Resources": [
{
"id": "<string>",
"name": "<string>",
"endpoint": "<string>",
"description": "<string>",
"schema": "<string>",
"meta": {
"location": "<string>",
"resourceType": "ResourceType"
},
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:ResourceType"
]
}
],
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:ListResponse"
]
}{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"detail": "Unauthorized",
"status": 401
}⌘I