Hi, just trying to give this library a quick spin with Okta (syncing users and groups to mongodb). I just did the quick make docker compose and then started having Okta send requests. Creating users and groups seems to work, but a few of the patch requests are failing.
After successfully sending a patch operation to add members to the group, Okta then does a get on the group, followed by this patch:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"op": "replace",
"value": {
"id": "79fe65ca-65db-4840-85a9-12283543b2b8",
"displayName": "Jeff.Scim.Test"
}
}
]
}
Its unclear to me why Okta thinks it needs to patch the group (b/c the name of the group has not changed). Regardless, I'm getting this confusing response:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"status": 400,
"scimType": "invalidValue",
"detail": "invalidValue: 'schemas' is required"
}
But it looks like the request includes the "schemas" array and its populated with a value. Any insight into where this error is coming from and what its trying to tell me?
Thanks!
Hi, just trying to give this library a quick spin with Okta (syncing users and groups to mongodb). I just did the quick
make docker composeand then started having Okta send requests. Creating users and groups seems to work, but a few of the patch requests are failing.After successfully sending a
patchoperation to add members to the group, Okta then does ageton the group, followed by thispatch:Its unclear to me why Okta thinks it needs to patch the group (b/c the name of the group has not changed). Regardless, I'm getting this confusing response:
But it looks like the request includes the "schemas" array and its populated with a value. Any insight into where this error is coming from and what its trying to tell me?
Thanks!