Emails::Address
Create Email Address
Create a sender ("from") email address. Provide username and a name (the from-name shown on emails). By default the address is created on ClickFunnels' shared sending domain (already verified, ready to send). To use a verified custom domain instead, pass emails_domain_id (the id of an already-verified sending domain). Verifying a brand-new custom domain is not yet available via the API.
post/workspaces/{workspace_id}/emails/addresses
Path parameters
workspace_idinteger required
Request body
Example request
{
"emails_address": {
"emails_address": {
"username": "hello",
"name": "Acme Support"
}
}
}Response
Created
Example response
{
"id": 1,
"public_id": "AbCdEf",
"workspace_id": 42000,
"email_address": "marketing@example.com",
"name": "Marketing Team",
"is_workspace_default": false,
"usable_as_sender": true,
"emails_domain": {
"name": "example.com",
"verified": true,
"dkim_verified": true,
"spf_verified": true,
"dmarc_verified": true,
"smtp_verified": false
},
"created_at": "2025-01-01T00:00:00.000Z",
"updated_at": "2025-01-01T00:00:00.000Z"
}