Submissions & Notifications

How form submissions work, including the public submit API and email notifications.

When a published form is submitted, Notify validates the payload, stores the submission, and optionally sends a notification email.

Public submit endpoint

POST https://notify.cx/api/public/forms/{slug}/submit

Example body:

{
  "data": {
    "email": "jane@example.com",
    "name": "Jane"
  }
}

Field keys must match the form’s configured fields. Invalid or missing required fields return 400.

Viewing submissions

Open the form in Forms to review submissions. Export options may be available depending on your dashboard version.

Notification emails

If auto-send email is enabled on the form:

  • Notify sends to the configured destination using the form’s email settings
  • Production from addresses require a verified domain
  • Notification sends appear in email logs

Next steps