JeffPeterson1
4 years agoQrew Captain
Re: Quickbase Webhook to JSON
Use a pipeline to convert that field using: {{a.your_field|tojson}} and store the output in another field. That should format it correctly. I do something similar with a few fields that I use to build a JSON to send to an external service.
Your pipeline will have 2 steps -
A. Triggers on record updated, when that field is updated.
B. Update record, write the value to your JSON holding field using {{a.your_field|tojson}}
Example:
Here I am stringifying the field [Technical Instructions] and writing the output to [Technical Instructions JSON] (which is a text type field) for later use.
------------------------------
Jeff Peterson
------------------------------
Your pipeline will have 2 steps -
A. Triggers on record updated, when that field is updated.
B. Update record, write the value to your JSON holding field using {{a.your_field|tojson}}
Example:
Here I am stringifying the field [Technical Instructions] and writing the output to [Technical Instructions JSON] (which is a text type field) for later use.
------------------------------
Jeff Peterson
------------------------------