GET
/
outbound
/
domains
curl --request GET \
  --url https://api.jetemail.com/outbound/domains \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "domains": [
    {
      "uuid": "550e8400-e29b-41d4-a716-446655440000",
      "domain": "example.com",
      "status": "active",
      "created_date": 1735689600,
      "last_modified": 1735689600,
      "dns": {
        "dkim": {
          "host": "jetemail._domainkey.example.com",
          "value": "v=DKIM1; k=rsa; p=MIGfMA0..."
        },
        "spf": {
          "host": "example.com",
          "value": "v=spf1 include:spf.jetsmtp.net ~all"
        },
        "dmarc": {
          "host": "_dmarc.example.com",
          "value": "v=DMARC1; p=none"
        }
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter your Bearer token in the format "Bearer {token}"

Response

200
application/json
Successfully retrieved domains
success
boolean
Example:

true

domains
object[]