SCIM group management: how to remoce a user from a group/team?

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

Well… “remove” is the op to use.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.