Webhook response - JSON

Hi,

I have created a webhook that is used to search a record in Zoho Creator and then send the response back in JSON:

Here is how the Zoho Creator Output bundle looks like:

image

When I go to Create JSON route to build the JSON objects, for some reason, I cannot specify the “Tag Category” and “Tag Value”. As you can see below, it says {collection} rather than having an option to select the object (like Contact):

image

As you can see “Contact” looks perfect but I am not sure why I cannot use the other two collections. Maybe it is due to space or something in the field name. How can I define this manually at the JSON route? I tried {{2.Tag Category: display_value}} but that displays this:

image

Thanks for your help!

ANSWER:

I used
{{2.Tag_Value.display_value}}
{{2.Tag_Value.ID}}

{{2.Tag_Category.display_value}}
{{2.Tag_Category.ID}}

And this worked.

I changed the “Tag Value” to “Tag_Value” and it worked:

{{2.Tag_Value.display_value}}
{{2.Tag_Value.ID}}

{{2.Tag_Category.display_value}}
{{2.Tag_Category.ID}}

1 Like