Sender creation and management
See the public API reference for senders at API Reference > Senders. The endpoints are covered one by one, starting with Create a new sender.
1. Create a new sender
Send a POST request to https://api.brevo.com/v3/senders. Sample cURL request:
Endpoint parameters:
Since ips is an array of objects, it has sub-attributes:
Using ips as array of objects
You can associate multiple dedicated IPs with a single sender.
Response
2. Update a sender
Send a PUT request to https://api.brevo.com/v3/senders/{senderId} to update an existing sender. Sample cURL request:
The Update a sender attributes split into path params and body params.
Path params
Body params
Since ips is an array of objects, it has sub-attributes:
Response
3. Get the list of all your senders
Send a GET request to https://api.brevo.com/v3/senders. Sample cURL request:
Endpoint attributes:
Response
Delete a sender
Send a DELETE request to https://api.brevo.com/v3/senders/{senderId}. To implement this endpoint in your preferred language, use the code below.
Sample cURL request:
The only attribute is senderId, returned in the response when you create a sender.
Response