Query parameters
Page size. Range 1–100.
Number of records to skip.
The profiles and campaigns list endpoints also accept
page (1-based) for
convenience, but the response is always the limit/offset shape below.Response shape
Paginated list responses (inside thedata envelope) look like:
The page of records.
The page size that was applied.
The offset that was applied.
Total matching records.
true when offset + items.length < total.The next offset as a string (e.g.
"50") when has_more, else null.Paging through results
Non-paginated lists
GET /public/webhooks returns a raw array of endpoints, not a paginated
envelope — there are few enough of them that paging isn’t needed.
