Field formatters is a no-code way to modify parsed data before exporting it to webhooks, Zapier, etc. If you are familiar with Python, you can also use the post-processing step to add any custom business logic.Pre-requirement: You need to activate the pos ...
Parsio offers two ways to modify parsed data: using Field formatters (no-code) or by writing a Python script (read below). The Post-processing step allows you to modify parsed data before exporting it to webhooks, Zapier etc. Write Python code to add cus ...
Prevent a document from being exportedIf you don't want to export some of the parsed documents (typically, based on a certain condition), simply return None. This will mark the document as "Skipped." Skipped documents aren't exported to Webhooks, Zapier, ...
Let's say you have a books array:# data['books']: [ { "name": 'Book 1', "price": 44.99, "qty": 1 }, { "name": 'Book 2', "price": 9.99, "qty": 3 }, { "name": 'Book 3', "price": 24.99, "qty": 2 } ]"For" loopsAt the post-processing step you may ...