Skip to main content
GET
/
api
/
domains
/
{domain_id}
/
notification-channels
/
{domainNotificationChannel_id}
cURL
curl --request GET \
  --url https://domainwarden.app/api/domains/{domain_id}/notification-channels/{domainNotificationChannel_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "019a11e5-3072-707a-82b2-91bf8b940e80",
  "label": "Production Email Alerts",
  "type": "email",
  "type_human": "Email",
  "whois_notifications_enabled": true,
  "dns_notifications_enabled": true,
  "ssl_notifications_enabled": true,
  "is_protected": false,
  "is_disabled": false,
  "disabled_reason": null,
  "last_notification_sent_at": "2025-10-24 08:30:15",
  "last_notification_sent_at_human": "3 days ago",
  "created_at": "2025-10-20 14:22:30",
  "created_at_human": "7 days ago"
}

Authorizations

Authorization
string
header
required

You can obtain your API Token from your Domainwarden account settings.

Path Parameters

domain_id
string
required

The ID of the domain.

domainNotificationChannel_id
string
required

The ID of the domainNotificationChannel.

Response

id
string
Example:

"019a11e5-3072-707a-82b2-91bf8b940e80"

label
string
Example:

"Production Email Alerts"

type
string
Example:

"email"

type_human
string
Example:

"Email"

whois_notifications_enabled
boolean
Example:

true

dns_notifications_enabled
boolean
Example:

true

ssl_notifications_enabled
boolean
Example:

true

is_protected
boolean
Example:

false

is_disabled
boolean
Example:

false

disabled_reason
string
Example:

null

last_notification_sent_at
string
Example:

"2025-10-24 08:30:15"

last_notification_sent_at_human
string
Example:

"3 days ago"

created_at
string
Example:

"2025-10-20 14:22:30"

created_at_human
string
Example:

"7 days ago"