The Forms client does not require API credentials. Forms are identified by a UUID that you obtain from the Paubox dashboard.Documentation Index
Fetch the complete documentation index at: https://docs.paubox.com/llms.txt
Use this file to discover all available pages before exploring further.
Instantiation
IFormsLibrary for dependency injection in ASP.NET Core:
Get a form
Retrieve a form’s metadata, field schema, and rendered HTML/CSS:Form object includes:
| Property | Description |
|---|---|
Title | Display name of the form |
FormJson | Parsed field schema |
FormHtml | Rendered HTML for embedding |
FormCss | Associated stylesheet |
Active | Whether the form is accepting submissions |
SubmissionCount | Number of submissions received |
CreatedAt / UpdatedAt | Timestamps |
Submit a form
SubmitForm returns void on success and throws on failure.
Submitting with file attachments
The maximum total request size is 250 MB.FormAttachment properties:
| Property | Description |
|---|---|
Name | File name including extension |
Content | Base64-encoded file content |