List mailbox action logs
Retrieve paginated mailbox action logs (message and mailbox events) for a mailbox in the given mail order.
Retrieve paginated mailbox action logs (message and mailbox events) for a mailbox in the given mail order. The mailbox email must belong to the order's domain. Supports date range and event type filters. Results are sorted by timestamp descending.
API Token authentication
Order resource ID
OR1a2b3c4d5e6f7gMailbox email address. Must belong to the order's domain.
user@example.comExact date filter (YYYY-MM-DD). Takes precedence over from_date/to_date when both are given.
2026-03-16Date range start (RFC 3339)
2026-03-01T00:00:00ZDate range end (RFC 3339)
2026-03-31T23:59:59ZFilter mailbox action log entries by event type
MessageNewPossible values: Page number
1Number of items per page
25Example: 25Success response
Unauthenticated response
Error response
Error response
Error response
GET /api/mail/v1/orders/{orderId}/logs/mailbox-actions?email=user%40example.com HTTP/1.1
Host: developers.hostinger.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"data": [
{
"folder": "INBOX.Sent",
"time": 1773906125,
"event": "MessageNew",
"mailbox": "user@example.com",
"hostname": "de-fra-mailstorage71.hostinger.io",
"timestamp": "2026-03-16T13:13:55Z"
}
],
"meta": {
"current_page": 1,
"per_page": 15,
"total": 100
}
}Last updated
Was this helpful?