When I call a webhook, it returns me a response like this:
{
lead: {
id: …
first_name: ….
….
}
}
But when I try to add it into my Postgresql as an externalData, Zapier does not allow me to select only `lead`, instead it shows me only direct property like `Lead Id`, `Lead First Name` etc, which I don’t want.
I want to add the lead response as a JSON string in my row:
{
...
externalData: JSON.stringify(response.lead),
}
Is it possible to do it without using custom code or custom query?
Thanks.