PATCH
/Groups/{identifier}
curl \
--request PATCH 'https://setup.adra.com/api/organizations/{organizationSid}/scim/Groups/{identifier}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"schemas":["urn:ietf:params:scim:api:messages:2.0:PatchOp"],"Operations":[{"op":"add","path":"members","value":[{"value":"9876fedc-ba09-8765-4321-0fedcba98765"}]}]}'
Request example
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"op": "add",
"path": "members",
"value": [
{
"value": "9876fedc-ba09-8765-4321-0fedcba98765"
}
]
}
]
}
Response examples (200)
{
"meta": {
"resourceType": "string"
},
"displayName": "string",
"members": [
{
"type": "User",
"value": "string"
}
],
"id": "string",
"schemas": [
"string"
]
}
Response examples (400)
{
"type": "string",
"title": "string",
"status": 42,
"detail": "string",
"instance": "string"
}
Response examples (401)
{
"type": "string",
"title": "string",
"status": 42,
"detail": "string",
"instance": "string"
}
Response examples (403)
{
"type": "string",
"title": "string",
"status": 42,
"detail": "string",
"instance": "string"
}
Response examples (500)
{
"type": "string",
"title": "string",
"status": 42,
"detail": "string",
"instance": "string"
}
Response examples (501)
{
"type": "string",
"title": "string",
"status": 42,
"detail": "string",
"instance": "string"
}