Contents

ResponsePagination

Pagination metadata returned in Campaign list responses, supporting offset-based navigation.

Declaration

object ResponsePagination

Properties

NameTypeDescription
offsetinteger

The starting position of the current page. Read-only.

pageSizeinteger

The number of items returned in this page. Read-only.

totalCountinteger

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
}

See Also