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"
}
}
}
]
}
Retrieves a list of domains associated with the user or organization
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"
}
}
}
]
}
Enter your Bearer token in the format "Bearer {token}"
Successfully retrieved domains
The response is of type object
.