Submit form
Forms
Submit form
Submit a form
- The
nameandemailattributes are required. - The
emailattribute must be a valid and deliverable email address.
Example request body:
{
"data": {
"type": "form_submissions",
"attributes": {
"name": "John Doe",
"email": "john.doe@example.com"
}
}
}
Response will include the newly created form submission resource.
{
"data": {
"id": "313",
"type": "form_submissions",
"attributes": {
"name": "John Doe",
"email": "john.doe@example.com",
"address_line_1": null,
"address_line_2": null,
"address_city": null,
"address_country": null,
"address_state": null,
"address_zip": null,
"phone_number": null,
"business_number": null,
"mobile_phone_number": null
},
"relationships": {
"site": {
"data": {
"id": "2",
"type": "sites"
}
},
"form": {
"data": {
"id": "15",
"type": "forms"
}
}
}
}
}
Behaviors and side effects
- Checks for disposable emails
- Validates email deliverability
- Sends double opt-in email if needed
- Subscribes contact (with opt-in handling)
- Subscribes to SMS if applicable
- Adds tags to contact
- Grants offers if configured
- Subscribes to email sequences
- Delivers webhooks
- Triggers automations
POST
Submit form