đď¸ Note: Please visit the GoFormz developers help site for information on the GoFormz API.
When using GoFormz, Forms are the unique instances of documents submitted to you by your Form Users. Use the GoFormz API to retrieve data from your received Forms as soon as theyâre completed. Then process the data however best suits your needs.
You have two options for retrieving your completed Form data via API: using a webhook, or with automatic polling.
Establish a webhook to send a request to your indicated web server each time a Form is completed.
To begin this process, youâd send a post request where the body indicates the web server to which you want your information posted to:
https://api.goformz.com/v2/webhooks
With this webhook established, a request will be sent to your indicated web server whenever a Form is completed. This request will contain the completed Formâs ID.
If youâd like to retrieve the data from all of the Formâs fields, youâll need to create an additional web server request directed to:
https://api.goformz.com/v2/formz/
{ID contained in webhook message}
Set up automatic polling
With automatic polling you can check for new Forms completed from a specified Template at a time-based interval which you define.
When you set up timed interval polling, your poll checks to see if any Forms have been completed since the last poll.