Example Request & Response (Multilingual Help Center)
$ curl https://api.intercom.io/help_center/sections/<id> \
-X GET \
-H 'Authorization:Bearer <Your access token>' \
-H 'Accept:application/json'
-H 'Content-Type: application/json' -d
HTTP/1.1 200 OK
{
"id": 1,
"type": "section",
"workspace_id": "abcdef",
"name": "Section 1",
"created_at": 123456,
"updated_at": 123456,
"url": "http://intercom.test/help/section/section-1",
"icon": "http://intercom/help_center/icon-1",
"parent_id": 1,
"order": 0,
"default_locale": "en",
"translated_content": {
"type": "group_translated_content",
"type": "group_translated_content",
"es": {
"type": "group_content",
"type": "group_content",
"name": "Sección"
}
}
}
You can fetch the details of a single section by making a GET request to https://api.intercom.io/help_center/sections/<id>
.
Request Path Parameters
Parameter | Type | Required? | Description |
---|---|---|---|
id | String | Yes | The unique identifier for the section which is given by Intercom. |
Response
This will return a Section object.