Thanks Jose,
That makes perfect sense, I must have missed that while scimming (ha, pun) over the spec.
For everyone else's reference in case this pops up in a search, adding a user to a group via PATCH can be done like this:
PATCH https://<gluu server>/identity/restv1/scim/v2/Groups/e1fc449b-c17c-4b4e-b67c-2707c263ef7c
```
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"op": "add",
"value": {
"members": [
{
"value":"5ff58ef2-8b38-4025-b4d2-93096598fc14"
}
]
}
}
]
}
```
Happy to close out this question, cheers!