v1

latestSwagger 2.0MIT2026-07-17233380637.0 KB
Senders

Create a new sender

post/senders

Request body

namestring required

From Name to use for the sender

emailstring email required

From email to use for the sender. A verification email will be sent to this address.

Example request

{
  "name": "Newsletter",
  "email": "newsletter@mycompany.com",
  "ips": [
    {
      "ip": "123.98.689.7",
      "domain": "mycompany.com",
      "weight": 50
    }
  ]
}

Response

sender created

idinteger required

ID of the Sender created

spfErrorboolean

Status of SPF configuration for the sender (true = SPF not well configured, false = SPF well configured)

dkimErrorboolean

Status of DKIM configuration for the sender (true = DKIM not well configured, false = DKIM well configured)

Example response

{
  "dkimError": false,
  "id": 5,
  "spfError": true
}