StatusDashboard
DashboardsBrandingEmail Sender

Get dashboard email sender

Retrieve the custom notification email sender for a dashboard.

View Markdown

GET /app/dashboards/{id}/branding/email-sender

Returns the configured notification email sender for a dashboard, including verification status and DKIM DNS records when applicable. Requires the Custom Branding feature entitlement.

This endpoint is separate from Get dashboard branding — logos, colors, and header links are managed via the branding endpoints; the email sender has its own domain verification lifecycle.


Path parameters

ParameterDescription
idThe UUID of the dashboard.

Request

See API Basics for required headers.

This endpoint takes no request body.


Sample request

curl https://api.statusdashboard.com/app/dashboards/a1b2c3d4-e5f6-7890-abcd-ef1234567890/branding/email-sender \
  -H "Authorization: Bearer bcf847abf5c6:def456"

Sample response

Status: 200 OK — sender configured, awaiting DNS

{
  "address": "support@acme.com",
  "domain": "acme.com",
  "status": "pending_dns",
  "dnsRecords": [
    {
      "type": "CNAME",
      "name": "abc123._domainkey.acme.com",
      "value": "abc123.dkim.amazonses.com"
    }
  ]
}

Status: 200 OK — no sender configured

{
  "status": "unset"
}

Response fields

FieldTypeDescription
statusstringunset, pending_dns, verifying, verified, failed, unverified, or removing.
addressstringFull sender email address (e.g. support@acme.com). Omitted when status is unset.
domainstringSending domain derived from address. Omitted when status is unset.
dnsRecordsarrayDKIM CNAME records to publish in DNS. Present while verification is in progress or after unverification.
verifiedAtstringISO 8601 timestamp when the domain was last verified.
unverifiedAtstringISO 8601 timestamp when verification was lost.
errorstringHuman-readable error when status is failed or unverified.

Error responses

StatusWhen
403Insufficient permissions, or the Custom Branding feature is not enabled.
404Dashboard not found or does not belong to the caller's organization.

On this page

We use cookies

We use essential cookies to keep the site working, and optional analytics cookies to understand how it's used. Read our Privacy Policy.