You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register

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.

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!