ListEmailsResponse
Paginated response for listing emails
Properties
| Name | Type | Description |
|---|---|---|
| data | array of EmailSummaryDto | List of email summaries for the current page |
List of email summaries for the current page | ||
| totalCount | integer | Total number of emails matching the filter criteria |
Total number of emails matching the filter criteria | ||
| offset | integer | Number of records skipped (pagination offset) |
Number of records skipped (pagination offset) | ||
| limit | integer | Maximum number of records returned per page |
Maximum number of records returned per page | ||
| hasMore | boolean | 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
}