post https://users.lucid.app/scim/v2/Groups
Create a new group.
Responses
400Bad Request. Occurs if the group was not created.
401Unauthorized. Occurs if the bearer token is invalid.
Create a new group.
400Bad Request. Occurs if the group was not created.
401Unauthorized. Occurs if the bearer token is invalid.
xxxxxxxxxx
curl --request POST \
--url https://users.lucid.app/scim/v2/Groups \
--header 'accept: application/json' \
--header 'content-type: application/json'
xxxxxxxxxx
18{
"id": "lucid-group-1234",
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"displayName": "Group A",
"members": [
{
"value": "lucid-1433",
"display": "User 1"
},
{
"value": "lucid-5678",
"display": "User 2"
}
],
"meta": {}
}