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>.
Security
bearerAuth
Intercom-Versionstring(intercom_version)
Intercom API version.
By default, it's equal to the version set in the app package.
Default:"2.9"
Enum:"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example:2.9
- The production API serverhttps://api.intercom.io/help_center/help_centers/{id}
- The european API serverhttps://api.eu.intercom.io/help_center/help_centers/{id}
- The australian API serverhttps://api.au.intercom.io/help_center/help_centers/{id}
curl -i -X GET \
https://api.intercom.io/help_center/help_centers/123 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: 2.9'Collection found
The identifier of the Help Center. This is used in the URL of the Help Center.
Example:"intercom"
Whether the Help Center is turned on or not. This is controlled in your Help Center settings.
Example:true
The display name of the Help Center only seen by teammates.
Example:"Intercom Help Center"
The URL for the help center, if you have a custom domain then this will show the URL using the custom domain.
Example:"https://intercom.help/mycompany"
Response
{ "id": "103", "workspace_id": "this_is_an_id91_that_should_be_at_least_4", "created_at": 1717021361, "updated_at": 1717021361, "identifier": "help-center-1", "website_turned_on": false, "display_name": "Intercom Help Center", "url": "https://help.mycompany.com", "custom_domain": "help.mycompany.com" }