API Docs / Schemas / ListEmailsResponse

ListEmailsResponse

Paginated response for listing emails

Properties

Name Type Description
dataarray of EmailSummaryDto

List of email summaries for the current page

List of email summaries for the current page

totalCountinteger

Total number of emails matching the filter criteria

Total number of emails matching the filter criteria

offsetinteger

Number of records skipped (pagination offset)

Number of records skipped (pagination offset)

limitinteger

Maximum number of records returned per page

Maximum number of records returned per page

hasMoreboolean

Indicates if there are more records available beyond this page

Indicates if there are more records available beyond this page

JSON Example

{
  "data": [
    {
      "id": "...",
      "tenantCode": "...",
      "subject": "...",
      "recipientEmail": "...",
      "recipientName": "..."
    }
  ],
  "totalCount": 0,
  "offset": 0,
  "limit": 0,
  "hasMore": false
}

Used By Operations