Email Logs

Get a paginated list of email processing logs for your company.

GET /v1/conversations/emails

Parameters

Parameter
Type
Default
Description

from

ISO 8601

30 days ago

Start of the date range

to

ISO 8601

Now

End of the date range

status

string

Filter by processing status

cursor

string

Pagination cursor

limit

integer

25

Items per page (max: 100)

Status Values

processed, draft_created, filtered, spam_filtered, paired, deduplicated

Response

{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "subject": "Re: Booking confirmation #12345",
      "sender": "guest@example.com",
      "status": "draft_created",
      "timestamp": "2026-03-10T14:30:00.000Z"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "2026-03-10T14:30:00.000Z"
  }
}

Response Fields

Field
Type
Description

id

string

Unique email log ID

subject

string

Email subject line

sender

string

Sender email address

status

string

Processing status

timestamp

string

When the email was received

Example

Last updated