ZIS action: Converting a number to a string
This example snippet illustrates a step in a ZIS flow that uses the Transform action to do a data type conversion. For more information about an action's built-in functions, see Builtin operators and functions in the jq documentation.
"ConvertTicketIDtoString": {
"Type": "Action",
"ActionName": "zis:common:transform:Jq",
"Parameters": {
"expr": ".ticket_event.ticket.id | tostring",
"data.$": "$.input"
},
"ResultPath": "$.zendesk.ticket_id_string",
"Next": "YourNextFlowState"
},