SCIM List Users
/scim/v2/Users
The SCIM data plane, authenticated by a SCIM bearer token (`POST /scim-token`) — not a session and not an org API token; the organization comes from the token, so no `X-Organization-Id`. Paginates with SCIM's `startIndex`/`count`, not this API's cursors.
Query Parameters
SCIM filter expression, e.g. userName eq "[email protected]".
1-based index of the first result (SCIM pagination, not this API's cursors).
Page size. Defaults to 100; the service advertises a maximum of 200.
curl -X GET 'https://api.elaichi.ai/scim/v2/Users' \
-H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
-H 'Content-Type: application/json'const response = await fetch('https://api.elaichi.ai/scim/v2/Users', {
method: 'GET',
headers: {
'Authorization': 'Bearer ' + process.env.ELAICHI_API_TOKEN,
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);import os
import requests
url = "https://api.elaichi.ai/scim/v2/Users"
headers = {
"Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
"Content-Type": "application/json",
}
response = requests.get(url, headers=headers)
print(response.json())