Hi, I wish to pass the workflow variable value through Webhook JSON response expression. hardcoded values as string is visible but variable data is reflecting as null. The said variables are reflecting correct value in the workflow though. Is there a syntax issue? Please advise.
Response expression-
{
“body”:
{
“statusCode”: 200,
“inputData”:
{
“approverName”: approverName,
“invoiceId”:invoiceId,
“amount”: amount,
“approverEmail”:approverEmail
}
}
}
API tool response-
{
“statusCode”: 200,
“inputData”: {
“approverEmail”: null,
“invoiceId”: null,
“amount”: null,
“approverName”: null
}
}