ResponsePagination
Pagination metadata returned in Campaign list responses, supporting offset-based navigation.
Declaration
object ResponsePaginationProperties
| Name | Type | Description |
|---|---|---|
offset | integer | The starting position of the current page. Read-only. |
pageSize | integer | The number of items returned in this page. Read-only. |
totalCount | integer | The total number of items matching the query across all pages. Read-only. |
Discussion
The ResponsePagination object reports offset-based pagination metadata: offset, pageSize, and totalCount allow jumping to any page directly.
Example
{
"offset": 0,
"pageSize": 20,
"totalCount": 143
}