put https://{server}{path}/Groups
Modify an existing group.
Responses
401Unauthorized. Occurs if the bearer token is invalid.
404Not Found. Occurs if the group was not found.
409Conflict. Occurs if the group name already exists on the account.
Modify an existing group.
401Unauthorized. Occurs if the bearer token is invalid.
404Not Found. Occurs if the group was not found.
409Conflict. Occurs if the group name already exists on the account.
xxxxxxxxxx
curl --request PUT \
--url https://users.lucid.app/scim/v2/Groupsid \
--header 'accept: application/json' \
--header 'content-type: 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": {}
}