Skip to main content
POST
/
api
/
forms
/
{form_id}
/
submissions
curl --request POST \
  --url https://apx.paubox.com/forms/api/forms/{form_id}/submissions \
  --header 'Content-Type: application/json' \
  --data '
{
  "form_data": {
    "first_name": "Jane",
    "last_name": "Smith",
    "email": "jane@example.com"
  }
}
'

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.

Path Parameters

form_id
string<uuid>
required

UUID of the form being submitted

Body

application/json
form_data
object
required

Key-value pairs matching the form's field schema (form_json). Structure varies per form.

attachments
object[]

Optional file attachments

Response

Submission accepted