Skip to main content
POST
/
api
/
v1
/
forms
/
{companyId}
Submit Signup Form
curl --request POST \
  --url https://api.sequenzy.com/api/v1/forms/{companyId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "listIds[]": [
    "<string>"
  ],
  "tagIds[]": [
    "<string>"
  ],
  "website": "<string>",
  "redirectUrl": "<string>"
}
'
{"success": true}

Documentation Index

Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt

Use this file to discover all available pages before exploring further.

Submit Signup Form

You can submit an embedded signup form or popup without an API key. The endpoint accepts application/x-www-form-urlencoded form posts and JSON.

Request

companyId
string
required
Your company ID.
email
string
required
The subscriber’s email address.
firstName
string
The subscriber’s first name.
lastName
string
The subscriber’s last name.
lists
string
Comma-separated list IDs. Omit this to add the subscriber to all lists, or use an empty lists= value to add the subscriber to no lists.
tags
string
Comma-separated tag IDs to apply to the subscriber.
listIds[]
string[]
Existing deployed embed format for repeated list IDs.
tagIds[]
string[]
Existing deployed embed format for repeated tag IDs.
website
string
Honeypot field. Leave it empty.
redirectUrl
string
http or https URL, or a domain such as google.com, to redirect visitors to after a successful submission.
curl -X POST "https://api.sequenzy.com/api/v1/forms/company_123?lists=list_abc123,list_def456&tags=tag_abc123" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  --data-urlencode "email=user@example.com"

Responses

{"success": true}