Can anybody share how I am supposed to remove a user from a group using the SCIM group endpoint? The manual describes how to add a new group and how to add a member to it, but not how to remove a member.
The documentation states this to add a user to a group:
Request: PATCH https://app.asana.com/api/1.0/scim/Groups/1
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"op": "add",
"path": "members",
"value": [
{
"value": "3"
}
]
}
]
}
I tried “delete” and “remove” as values for op - but both of them result in an error 403.
Response: 204 No Content