Hi all,
I am using the SCIM 2.0 SaaS connector (SCIM 2.0 SaaS Documentation ) and trying to disable accounts using the connector but I am receiving the following error.
Does anyone know where I would insert the path location?
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"status": "400",
"scimType": "invalidValue",
"detail": "path is required",
"fieldErrors": {
"Operations[0].path": [
{
"code": "missingRequired",
"message": "path is required"
}
]
}
}
Dam Goldston:
I am using the SCIM 2.0 SaaS connector (SCIM 2.0 SaaS Documentation ) and trying to disable accounts using the connector but I am receiving the following error.
Does anyone know where I would insert the path location?
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"status": "400",
"scimType": "invalidValue",
"detail": "path is required",
"fieldErrors": {
"Operations[0].path": [
{
"code": "missingRequired",
"message": "path is required"
}
]
}
}
does your scim endpoint allows without path for patch operation?
Hi @HussainshaSyed001 ,
Nope, you have to specify the path. Here is an example payload I can send via postman.
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"op": "replace",
"path": "active",
"value": true
}
]
}
Hello @dgoldston05 , just try with “value”: false