Interface IEmailLogCollectionResource
Represents the email logs collection resource for an account.
public interface IEmailLogCollectionResource : IRestResource
- Inherited Members
Methods
List(EmailLogsListFilter?, string?, CancellationToken)
Lists email logs with optional filters and cursor-based pagination.
Task<EmailLogsListResponse> List(EmailLogsListFilter? filter = null, string? searchAfter = null, CancellationToken cancellationToken = default)
Parameters
filterEmailLogsListFilterOptional filter. When null, no filter query params are added.
searchAfterstringOptional cursor (message_id UUID from previous response's next_page_cursor) for the next page.
cancellationTokenCancellationTokenToken to control operation cancellation.
Returns
- Task<EmailLogsListResponse>
Response with messages, total count, and next page cursor.