get https://{server}{path}/Groups
Get a specific group on the account.
Responses
401Unauthorized. Occurs if the bearer token is invalid.
404Not Found. Occurs if the user was not found.
Get a specific group on the account.
401Unauthorized. Occurs if the bearer token is invalid.
404Not Found. Occurs if the user was not found.
xxxxxxxxxx
curl --request GET \
--url https://users.lucid.app/scim/v2/Groupsid \
--header 'accept: application/json'
xxxxxxxxxx
18{
"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": {}
}