Skip to main content
GET
/
api
/
domains
/
{domain_id}
/
activity-logs
/
{activityLog_id}
cURL
curl --request GET \
  --url https://domainwarden.app/api/domains/{domain_id}/activity-logs/{activityLog_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "019a11e5-1234-5678-9012-123456789012",
  "domain_id": 1,
  "domain_label": "example.com",
  "domain_url": "https://example.com",
  "domain_favicon_url": "https://www.google.com/s2/favicons?domain=example.com&sz=128",
  "user_id": 42,
  "user_name": "John Doe",
  "message": "DNS monitoring was enabled",
  "type": "dns_enabled",
  "type_human": "DNS Enabled",
  "created_at": "2024-10-27 12:00:00",
  "created_at_human": "2 hours 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.

activityLog_id
string
required

The ID of the activityLog.

domain
integer
required

The ID of the domain.

activityLog
string
required

The UUID of the activity log entry.

Response

id
string
Example:

"019a11e5-1234-5678-9012-123456789012"

domain_id
integer
Example:

1

domain_label
string
Example:

"example.com"

domain_url
string
Example:

"https://example.com"

domain_favicon_url
string
Example:

"https://www.google.com/s2/favicons?domain=example.com&sz=128"

user_id
integer
Example:

42

user_name
string
Example:

"John Doe"

message
string
Example:

"DNS monitoring was enabled"

type
string
Example:

"dns_enabled"

type_human
string
Example:

"DNS Enabled"

created_at
string
Example:

"2024-10-27 12:00:00"

created_at_human
string
Example:

"2 hours ago"