Retrieve Service Provider Configuration
curl --request GET \
--url https://api.lighton.ai/scim/v2/ServiceProviderConfig \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.lighton.ai/scim/v2/ServiceProviderConfig"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.lighton.ai/scim/v2/ServiceProviderConfig', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"documentationUri": "<string>",
"patch": {
"supported": false
},
"bulk": {
"maxOperations": 123,
"maxPayloadSize": 123,
"supported": false
},
"filter": {
"maxResults": 123,
"supported": false
},
"changePassword": {
"supported": false
},
"sort": {
"supported": false
},
"etag": {
"supported": false
},
"authenticationSchemes": {
"type": "<string>",
"name": "<string>",
"description": "<string>",
"specUri": "<string>",
"documentationUri": "<string>",
"primary": false
},
"meta": {
"location": "<string>",
"resourceType": "ServiceProviderConfig"
},
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
]
}{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"detail": "Unauthorized",
"status": 401
}SCIM
Retrieve Service Provider Configuration
GET
/
scim
/
v2
/
ServiceProviderConfig
Retrieve Service Provider Configuration
curl --request GET \
--url https://api.lighton.ai/scim/v2/ServiceProviderConfig \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.lighton.ai/scim/v2/ServiceProviderConfig"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.lighton.ai/scim/v2/ServiceProviderConfig', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"documentationUri": "<string>",
"patch": {
"supported": false
},
"bulk": {
"maxOperations": 123,
"maxPayloadSize": 123,
"supported": false
},
"filter": {
"maxResults": 123,
"supported": false
},
"changePassword": {
"supported": false
},
"sort": {
"supported": false
},
"etag": {
"supported": false
},
"authenticationSchemes": {
"type": "<string>",
"name": "<string>",
"description": "<string>",
"specUri": "<string>",
"documentationUri": "<string>",
"primary": false
},
"meta": {
"location": "<string>",
"resourceType": "ServiceProviderConfig"
},
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig"
]
}{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"detail": "Unauthorized",
"status": 401
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
Service provider configuration response
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
Show child attributes
Show child attributes