06-05-2022 05:58 PM
creating request body
{“urn:ietf:params:scim:schemas:sailpoint:1.0:LaunchedWorkflow”: {
“workflowName”: “LCM Provisioning”
}
how to escape ‘.’ in urn:ietf:params:scim:schemas:sailpoint:1.0:LaunchedWorkflow
since this is added in “target path”
should be
06-06-2022 12:13 AM
This is some kind of partial flattening of the data, which can be achieved with a Script. If this is the only part that needs to be modified, than it can also be transformed with an expression, but if the data contains more objects that are needed to be flattened out, than I suggest you to use Script.
06-06-2022 12:18 AM
Thank you for the feedback
06-06-2022 12:31 AM
The pipeline below contains a script to flatten the data completely by iterating through every level of the JSON structure. You’ll probably need to include a counter to stop (or start) at certain point to adapt the solution according to your issue.