Tables/Arrays in webhook delivery

Hello

We are trying to add table/array data in a webhook delivery so we can get all the data along with the file when a process completes.

How can we do that as there is no {{token}} to retrieve them in the json body.

Anyone encountered the same issue?

Hello @kprin,

You can try the following workaround.

If you have a json like this one:

[
  {"obj1":"val1"},
  {"obj2":"val2"},
]

You can wrap it in the data object:

{
  "data": [
    {"obj1":"val1"},
    {"obj2":"val2"},
  ]
}

And then use the data token in the delivery.

Best regards,
Petr
Plumsail team