All Collections
API & Developer Hub
Retrieve completed Form data via API
Retrieve completed Form data via API
Updated over a week ago

🗒️ 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

When you set up timed interval polling, your poll checks to see if any Forms have been completed since the last poll.

Did this answer your question?