Forms
Forms are defined by configurations and filled as instances through /v0/forms and /v0/forms/configurations.
Typical flow:
- Create or update a form configuration (include file fields with
maxFilesas needed) - Validate the configuration
- Create a form instance (
POST /v0/forms) with file fields as empty arrays - Upload bytes via
POST /v0/media/forms/{formId}/attachments - Discover
partKeys fromGET /v0/forms/{formId}and download via Media
Uploads enforce schema maxFiles and plan entitlement forms.attachments.uploadPerDay. See Media uploads and Errors & limits.
Recipes: Form configuration, Forms, Form with file.