Skip to content

Paginated Response

A paginated list of notes associated with a contact.

typestring

String representing the object's type. Always has the value list.

Example:"list"
dataArray of objects(Note)

An array of notes.

total_countinteger

A count of the total number of notes.

Example:1
pagesobject or null(Cursor based pages)

Cursor-based pagination is a technique used in the Intercom API to navigate through large amounts of data. A "cursor" or pointer is used to keep track of the current position in the result set, allowing the API to return the data in small chunks or "pages" as needed.

{ "type": "list", "data": [ {} ], "total_count": 1, "pages": { "type": "pages", "page": 1, "next": {}, "per_page": 2, "total_pages": 13 } }