Home//
REST API Reference
/- Article Search Response
List all articles
Create an article
Retrieve an article
Update an article
Delete an article
Retrieve an article draft
Stage an article draft
Publish an article draft
Add a tag to an article
Remove a tag from an article
List article versions
Retrieve an article version
Search for articles
Article
Articles
Article Search Highlights
Article Version
Article Version Summary
Internal Article
Article Search Response
The results of an Article search
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", "total_count": 5, "data": { "articles": [ … ], "highlights": [ … ] }, "pages": { "type": "pages", "page": 1, "next": { … }, "per_page": 2, "total_pages": 13 } }