This article shares some possible use cases your app could support, as well as a sample flow that could support each use case. This can be a helpful jumping off point as you plan your app's implementation.
You can upload media files to a media manager folder by creating a new submission for a form that contains a field for uploading files.
Call Get Media Upload URL to generate the upload URL for the specified file.
Call Create Submission and use the generated URL as the value for the file upload field.
You can retrieve submission data and upload it to an external data analysis tool. With the external tool, site owners can easily do a statistical analysis of their form submission data.
For the first load, use Query Submissions By Namespace and filter for all submissions whose status has been confirmed.
Extract any desired data from the submissions
payload, then upload the data to your app.
For all subsequent loads, use the Query Submissions By Namespace endpoint and filter for submissions that are confirmed and have not yet been seen.
Repeat step 2 to 3 for each subsequent load.
Every time a form gets submitted, you can add the form submitter to an external CRM. A site owner can then use their CRM to send marketing emails to their form submitters. This flow relies on forms that requires a submitters email, and on an external CRM service.
When the Submission Created Webhook is triggered, you'll receive the submission in the payload from createdEvent.entity
.
Exract the email address from the submissions
object.
Check that the email adress is not already listed as a subscriber in the external CRM.
Upload the new subscriber to the CRM.