Retrieve a Help Center

You can fetch the details of a single Help Center by making a GET request to https://api.intercom.io/help_center/help_center/<id>.

SecurityHTTP: bearerAuth
Request
path Parameters
id
required
integer

The unique identifier for the collection which is given by Intercom.

Example: 123
header Parameters
Intercom-Version
string (intercom_version)
Default: 2.11

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

Enum: "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" "Unstable"
Example: 2.11
get
/help_center/help_centers/{id}
Request samples
Responses

200

Collection found

Response Schema: application/json
id
string

The unique identifier for the Help Center which is given by Intercom.

workspace_id
string

The id of the workspace which the Help Center belongs to.

created_at
integer <date-time>

The time when the Help Center was created.

updated_at
integer <date-time>

The time when the Help Center was last updated.

identifier
string

The identifier of the Help Center. This is used in the URL of the Help Center.

website_turned_on
boolean

Whether the Help Center is turned on or not. This is controlled in your Help Center settings.

display_name
string

The display name of the Help Center only seen by teammates.

401

Unauthorized

404

Collection not found

Response samples
application/json
{ "id": "371", "workspace_id": "this_is_an_id82_that_should_be_at_least_4", "created_at": 1715077772, "updated_at": 1715077772, "identifier": "help-center-1", "website_turned_on": false, "display_name": "Intercom Help Center" }