Dear all,
I use a webhook to send json to an external platform every time a request has modified.
All works fine, but I need to send out some account information also linked to the request.
I tried to use the only one account variable available ${{request.account}}, but it shows only few information.
I get
{
"country": null,
"name": "Account name",
"id": "615",
"status": {
"id": "1"
},
"ciid": "678"
}
Is there a way to add attributes in the json output?
Thank you