Parsing? | Community
Skip to main content
Level 3
September 18, 2020
Question

Parsing?

  • September 18, 2020
  • 1 reply
  • 453 views

How do I make this map-able? It comes in from a Webhook as "Data" in a pretty pink box, but I can't figure out how to break it up.

  • {"rowNumber":1,"version":16,"expanded":true,"accessLevel":"OWNER","createdAt":"2020-09-16T00:59:27Z","modifiedAt":"2020-09-16T01:06:19Z","cells":[{"columnId":2644018982086532,"value":"Grand Finale Hopes","displayValue":"Grand Finale Hopes"},{"columnId":7147618609457028,"value":"andy@google.com","displayValue":"andy@google.com"},{"columnId":1518119075243908,"value":"company","displayValue":"company"},{"columnId":6021718702614404,"value":"Dr. Jekyl,"displayValue":"Dr. Jekyl"},{"columnId":3769918888929156,"value":"Email","displayValue":"Email"},{"columnId":8273518516299652,"value":"Mr Hide Best","displayValue":"Mr. Hide"}]}

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

Level 4
September 18, 2020

Hi Howard, most often your webhook is expecting to receive JSON data. The default behavior is to parse that JSON data and make it available to future modules. In the "advanced settings" of the webhook, you could change this to JSON-passthrough -- which will not parse the data.

In 95% of use case that default setting works out fine. But if you want to strictly enforce some data structure, you can also use the Show Advanced Settings to create a data structure for validation (and subsequent mapping).

More details can be found here.