User Activity

objective is to build the below in mapper “input”: [ { “key”: “plan”, “value”: “ProvisioningPlan”, “type”: “application/xml” }, { “key”: “identityName”, “value”: “88E2EA18-6C15-E811-8BB4-0017A47705CA” }, { “key”:“flow”, “value”:“AccessRequest” }, { “...
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...
In the router i am trying to route data based on below criteria if any of the value in statusC.contains("T’) route to view1 if any of the value in !statusC.contains("T’). (does not contains) route to view2 How can i best achieve from below data [ { ...
Below is my input, i am trying filter for id where type == file and name begins with “Send Email” expression i used in mapper jsonPath($, “entity.entries[?(@.type == ‘file’ && @.name =~ /Send Email.*?/i)].id”) but i am getting error Please check exp...
I need to find arrays where all values are equal. What’s the fastest way to do this? Should I loop through it and just compare values? ['a', 'a', 'a', 'a'] // true ['a', 'a', 'b', 'a'] // false
Kudos given to