data, and paging information in meta. Single-resource and action endpoints return the object directly, without an envelope.
Pagination
number
Page size. Defaults to
50, maximum 250.string
Opaque paging token. When a response includes
meta.cursor, pass it back as ?cursor= to fetch the next page. When meta.cursor is absent, you are on the last page.number
Total record count for the current filter, independent of paging position.
Filtering
Filters use thef[field]=value query syntax. Each list endpoint documents its own filterable fields. An unknown field is rejected with invalid_filter_field (the error lists the allowed fields).
1
Exact match
f[status]=1. Comma means IN: f[status]=1,2.2
Contains match
Text fields like
f[data.phone]=531951 match case-insensitively anywhere in the value, with a minimum term length per field.3
Combining filters
Multiple
f[...] params are ANDed together, and can be mixed with limit / cursor.Filter errors
See the complete Error Reference.

