POST /senders
Creates a new email sender in your Brevo account.
Use this to:
- Add new senders for email campaigns
- Configure sender identity (name and email)
- Associate dedicated IPs with the sender (for dedicated IP accounts)
- Set up domain-based sender configurations
Key information returned:
- Created sender ID
- DKIM and SPF configuration status
- Success confirmation
Important considerations:
- Verification email sent to specified sender address
- DKIM and SPF configuration affects deliverability
- Dedicated IP accounts require IP association during creation
- IP weights must sum to 100 when specified
- Sender must be verified before use in campaigns
Servers
- https://api.brevo.com/v3
Request headers
| Name | Type | Required | Description |
|---|---|---|---|
Content-Type |
String | Yes |
The media type of the request body.
Default value: "application/json" |
Request body fields
| Name | Type | Required | Description |
|---|---|---|---|
ips[] |
Array | No |
Mandatory in case of dedicated IP. IPs to associate to the sender. Not required for standard accounts. |
ips[].domain |
String | Yes |
Domain of the IP |
ips[].ip |
String | Yes |
Dedicated IP available in your account |
ips[].weight |
Integer | No |
Weight to apply to the IP. Sum of all IP weights must be 100. Should be passed for either ALL or NONE of the IPs. If it's not passed, the sending will be equally balanced on all IPs. |
email |
String | Yes |
From email to use for the sender. A verification email will be sent to this address. |
name |
String | Yes |
From Name to use for the sender |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.