get https://{server}{path}/Groups
Gets all groups on an account.
Responses
401Unauthorized. Occurs if bearer token is invalid.
Gets all groups on an account.
401Unauthorized. Occurs if bearer token is invalid.
xxxxxxxxxx
curl --request GET \
--url https://users.lucid.app/scim/v2/Groups \
--header 'accept: application/json'
xxxxxxxxxx
28}
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:ListResponse"
],
"totalResults": 1,
"startIndex": 1,
"itemsPerPage": 100,
"Resources": [
{
"id": "lucid-group-1234",
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:Group"
],
"displayName": "Group A",
"members": [
{
"value": "lucid-1433",
"display": "User 1"
},
{
"value": "lucid-5678",
"display": "User 2"
}
],
"meta": {}