Update a section

Example Request & Response (Multilingual Help Center)

$ curl https://api.intercom.io/help_center/sections/<id> \\-X PUT \\-H 'Authorization:Bearer <Your access token>' \\-H 'Accept:application/json'-H 'Content-Type: application/json' -d{  \"name\": \"New title\",  \"translated_content\": {    \"type\": \"group_translated_content\",    \"es\": {      \"type\": \"group_content\",      \"name\": \"Nuevo título\"    }  }}

You can update the details of a single section by making a PUT request to https://api.intercom.io/help_center/sections/<id>.

Request Path Parameters

ParameterTypeRequired?Description
idStringYesThe unique identifier for the section which is given by Intercom.

Request Body Parameters

AttributeTypeRequired?Description
nameStringNoThe name of the section. For multilingual collections, this will be the name of the default language's content.
parent_idStringNoThe id for the collection this section will be within.
translated_contentObjectNoA Group Translated Content Object whereby you can specify multiple multilingual collections to be created.

Response

This will return a Section object of the section you just updated.