v51

latestOpenAPI 3.0.1MITraw.githubusercontent.com2026-08-01150230854.3 KB
Help Center

List all collections

You can fetch a list of all collections by making a GET request to https://api.intercom.io/help_center/collections.

Collections will be returned in descending order on the updated_at attribute. This means if you need to iterate through results then we'll show the most recently updated collections first.

get/help_center/collections

Headers

Intercom-Version'1.0' | '1.1' | '1.2' | '1.3' | '1.4' | '2.0' | '2.1' | '2.2' | '2.3' | '2.4' | '2.5' | '2.6' | '2.7' | '2.8' | '2.9' | '2.10' | '2.11' | '2.12' | '2.13' | '2.14'

Intercom API version.</br>By default, it's equal to the version set in the app package.

Example:2.14

Response

Successful

type'list'

The type of the object - list.

total_countinteger

A count of the total number of collections.

Example response

{
  "type": "list",
  "pages": {
    "type": "pages",
    "page": 1,
    "next": {
      "per_page": 2,
      "starting_after": "your-cursor-from-response"
    },
    "per_page": 2,
    "total_pages": 13
  },
  "total_count": 1,
  "data": [
    {
      "id": "6871119",
      "workspace_id": "hfi1bx4l",
      "name": "Default language name",
      "description": "Default language description",
      "created_at": 1672928359,
      "updated_at": 1672928610,
      "url": "http://intercom.test/help/collection/name",
      "icon": "book-bookmark",
      "default_locale": "en",
      "translated_content": {
        "type": "group_translated_content",
        "ar": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "bg": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "bs": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "ca": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "cs": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "da": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "de": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "el": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "en": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "es": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "et": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "fi": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "fr": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "he": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "hr": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "hu": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "id": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "it": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "ja": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "ko": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "lt": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "lv": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "mn": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "nb": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "nl": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "pl": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "pt": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "ro": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "ru": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "sl": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "sr": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "sv": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "tr": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "vi": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "pt-BR": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "zh-CN": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        },
        "zh-TW": {
          "type": "group_content",
          "name": "Collection name",
          "description": " Collection description"
        }
      },
      "parent_id": "6871118"
    }
  ]
}