uuid in the path is the id of the order.💡 Created an order through the web app but never filled in the form?
You can submit the domain configuration for those orders through this endpoint too.
To find all orders that are still pending form submission, use the Get Pending Forms endpoint:
→ Get Pending Forms
uuid (required)provider (required)"scaledmail" — Domains purchased through ScaledMail"other" — Domains from external providers like Porkbun, Namecheap, or DNSimple⚠️ If the original order was created with ScaledMail selected or purchased domains, providermust be"scaledmail".
organization_id (optional)tag (optional)providers (required)"google", "outlook", "smtp""providers": {
"google": {
"domains": [ ... ]
},
"outlook": {
"domains": [ ... ]
},
"smtp": {
"domains": [ ... ]
}
}domain (required)"example.com" — must match a domain from the original order.redirect (optional)"profile_picture": "https://link1.com"profile_picture inside each alias to override it.⚠️ All domains within the same provider must use the same format. You cannot mix first_name/last_nameandaliasesacross domains in the same provider.
first_name and last_name"first_name": "John",
"last_name": "Doe"aliases array directly"aliases": [
{
"first_name": "John",
"last_name": "Doe",
"alias": "john.doe",
"profile_picture": "https://link1.com"
}
]aliases array is provided, the system will not auto-generate aliases.first_name, last_name, and alias.alias must be the local part only (e.g. "john.doe") — no @ symbol, no spaces. Maximum 64 characters.| Provider | Required aliases per domain |
|---|---|
google | 2 |
outlook | 25 |
smtp | 4 |
sequencer (optional)"sequencer": {
"provider": "Instantly",
"username": "user@instantly.ai",
"password": "yourpassword",
"link": "https://app.instantly.ai",
"workspace": "my-workspace",
"tag": "{{ID}}"
}provider, username, password are required.link, workspace, tag are optional but cannot be empty if provided.hosting (conditionally required)provider = "other"."hosting": {
"provider": "Namecheap",
"username": "your-username",
"password": "your-password",
"link": "https://namecheap.com"
}provider, username, password are required.link is optional but cannot be empty if provided."scaledmail" as the provider.curl --location 'https://server.scaledmail.com/api/v1/submit-form/?organization_id=undefined&provider=undefined&coupon=undefined' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"tag": "campaign_q1",
"providers": {
"google": {
"domains": [
{
"domain": "outreach-one.com",
"first_name": "John",
"last_name": "Doe"
},
{
"domain": "outreach-two.com",
"first_name": "Jane",
"last_name": "Smith"
}
]
}
}
}'{}