List SCIM groups
/scim-group
Query Parameters
Filter groups by team ID.
05daecaf-4365-42e8-8370-8127de5dd717Filter groups by display name.
EngineeringFilter groups by group ID.
9c2b104d-74a6-47f2-b93e-c6b611e82391Response Body
100MjAyNC0wNS0yMVQwNjoyNTozMy4xMjRaThe date and time when the group was first provisioned.
2021-08-10T10:00:00.000ZThe human-readable name of the group, as pushed by the IdP.
EngineeringThe group's identifier in the upstream identity provider.
8c6c2d1e-okta-group-idThe ID of the SCIM group.
9c2b104d-74a6-47f2-b93e-c6b611e82391Number of users currently in this group.
12The ID of the team that owns this SCIM group.
05daecaf-4365-42e8-8370-8127de5dd717The date and time when the group was last updated.
2021-08-10T10:30:00.000Zcurl -X GET 'https://api.truto.one/scim-group' \
-H 'Authorization: Bearer <your_api_token>' \
-H 'Content-Type: application/json'const response = await fetch('https://api.truto.one/scim-group', {
method: 'GET',
headers: {
'Authorization': 'Bearer <your_api_token>',
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);import requests
url = "https://api.truto.one/scim-group"
headers = {
"Authorization": "Bearer <your_api_token>",
"Content-Type": "application/json",
}
params = {
}
response = requests.get(url, headers=headers, params=params)
print(response.json())