Remove Users from Group using SCIM

Hello,

I'm trying to use the SCIM API to remove users from a group but while adding creating groups or adding users to a group is working fine, removing doesn't seem to work. Following your docs, I'm using the following payload:

{
  "Operations": [
    {
      "op": "remove",
      "path": "members[value eq '{{userProfile.data.id}}']",
    },
  ]
}

The call is made but nothing happens.
Am I missing something here?

Thank you

Hey @machadopn! I tried this out, and the user sid does need to be surrounded in " ".

Can you try a body like this:

{"Operations":[{"op":"remove","path":"members[value eq \"{{userProfile.data.id}}\"]"}]}

Specifically, you need to wrap the sid in " " and escape them with \

Let me know how that works for you!