Expand my Community achievements bar.

The next phase for Workfront Community ideas is coming soon. Learn all about it in our blog!

Parsing?

Avatar

Level 5

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"}]}

1 Reply

Avatar

Level 4

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.