Passing Boolean value from OIC Mapper Xpath
Summary:
This one is pretty simple.
We are calling this 3rd Party Concur API (PATCH) /profile/identity/v4/Users/.
Here is the sample payload body
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"op": "replace",
"path": "active",
"value": true <----Problem Child
}
]
}
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"op": "replace",
"path": "active",
"value": "true" <--- pass it as string
}
]
}
In OIC Mapper
Here is the sample payload of what was send in activity stream.
We've tried so many permutations, somehow it looks like OIC want to pass that as STRING.
Please help before I lose more hair on my head.