Conversation
User
Organization
Calendar
Scim
Patch SCIM Group
Partially updates a group using SCIM patch semantics.
PATCH
/
scim
/
Groups
/
{id}
curl --request PATCH \
--url http://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"
}
]
}
]
}'
{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:Group",
"urn:okta:custom:group:1.0"
],
"displayName": "firstGroup",
"id": "1001",
"members": [
{
"value": "101",
"display": "okta"
}
],
"urn:okta:custom:group:1.0": {
"description": "This is the first group"
}
}
Authorizations
Path Parameters
SCIM ID of the group
Body
Response
200
application/json
Group patched successfully
The response is of type object
.
Was this page helpful?
curl --request PATCH \
--url http://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"
}
]
}
]
}'
{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:Group",
"urn:okta:custom:group:1.0"
],
"displayName": "firstGroup",
"id": "1001",
"members": [
{
"value": "101",
"display": "okta"
}
],
"urn:okta:custom:group:1.0": {
"description": "This is the first group"
}
}
Assistant
Responses are generated using AI and may contain mistakes.