curl --request PATCH \
--url https://api.attention.tech/v2/scim/Groups/{id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"op": "add",
"path": "members",
"value": [
{
"value": "5b3680ed-0bed-4c98-af91-e75c3f384b15",
"display": "john.doe@example.com"
}
]
}
]
}
'