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"
}
}
'Submits a respondent’s answers for a form. No authentication required. On success, the service stores the submission, increments the form’s submission count, emails recipients (if configured), and returns 201 with no body.
Maximum request size is 250 MB (to support file attachments).
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.
UUID of the form being submitted
Submission accepted