Introduction
Get users
Get user
Add user
Update user
Get groups
Get group
Add group
Update group
{ "schemas": [ "urn:ietf:params:scim:api:messages:2.0:ListResponse" ], "Resources": [ { "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:Group" ], "id": "1", "displayName": "Admins", "meta": { "resourceType": "Group", "created": "2023-01-20T13:21:10.661Z", "lastModified": "2022-05-10T10:45:09.661Z", "location": "{url to get group with scim protocol}" }, "members": [ { "value": 1, "$ref": "{url to get user with scim protocol}", "display": "Johnny Doe" } ] }, { "schemas": [ "urn:ietf:params:scim:schemas:core:2.0:Group" ], "id": "2", "displayName": "Developers", "meta": { "resourceType": "Group", "created": "2023-01-20T13:21:10.661Z", "lastModified": "2022-05-10T10:45:09.661Z", "location": "{url to get group with scim protocol}" }, "members": [ { "value": 2, "$ref": "{url to get user with scim protocol}", "display": "Clark Kent" } ] } ], "totalResults": 2, "itemsPerPage": 2, "startIndex": 0 }
A schema has not been defined for this response code.