For the complete documentation index, see llms.txt. This page is also available as Markdown.

List action logs

Retrieve paginated account action logs (administrative and user actions) for the given mail order. Supports filtering by account, date range, and status. Results are sorted by timestamp descending.

List action logs

get

Retrieve paginated account action logs (administrative and user actions) for the given mail order. Supports filtering by account, date range, and status. Results are sorted by timestamp descending.

Authorizations
AuthorizationstringRequired

API Token authentication

Path parameters
orderIdstringRequired

Order resource ID

Example: OR1a2b3c4d5e6f7g
Query parameters
accountstring · email · nullableOptional

Filter log entries by a specific email account

Example: user@example.com
datestring · date · nullableOptional

Exact date filter (YYYY-MM-DD). Takes precedence over from_date/to_date when both are given.

Example: 2026-03-16
from_datestring · date-time · nullableOptional

Date range start (RFC 3339)

Example: 2026-03-01T00:00:00Z
to_datestring · date-time · nullableOptional

Date range end (RFC 3339)

Example: 2026-03-31T23:59:59Z
statusstring · enum · nullableOptional

Filter log entries by status

Example: SuccessfulPossible values:
pageintegerOptional

Page number

Example: 1
per_pageinteger · max: 100Optional

Number of items per page

Default: 25Example: 25
Responses
200

Success response

application/json
get/api/mail/v1/orders/{orderId}/logs/action
GET /api/mail/v1/orders/{orderId}/logs/action HTTP/1.1
Host: developers.hostinger.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "data": [
    {
      "action": "Account created",
      "extra": null,
      "created_at": "2026-03-16T12:11:34Z",
      "ip_address": "127.0.0.1",
      "role": "user",
      "action_context": "example.com",
      "response_status": "OK"
    }
  ],
  "meta": {
    "current_page": 1,
    "per_page": 15,
    "total": 100
  }
}

Last updated

Was this helpful?