Hello, I’ve run into an odd situation.
I need to pass a specific JSON structure to create a termination ticket, but Workflows seems to remove the brackets at the beginning and end when it is sent.
I found this quote but I’m not sure that it should be applying to a free form body field, nonetheless it is. Goofy thing too is that in the test workflow output it seems fine but then in the execution workflow export they are gone.
I need to pass this structure to my ITSM to create the termination ticket:
[
{
"tickettype_id": "76",
"details":"Automated ticket creation by SailPoint Identity Security Cloud for ",
"customfields": [
{
"id": "259",
"value": "2024-12-30T00:00:00.000Z"
},
{
"id": "240",
"value": {
"name": "First Last"
}
}
]
}
]
Is there a way to prevent workflows from removing those?
Thank you!