Create a section

Example Request & Response (Multilingual Help Center)

$ curl https://api.intercom.io/help_center/sections \\-X POST \\-H 'Authorization:Bearer <Your access token>' \\-H 'Accept:application/json'-H 'Content-Type: application/json' -d{  \"name\": \"Section 1\",  \"parent_id\": \"1\",  \"translated_content\": {    \"es\": {      \"name\": \"Sección 1\",      \"description\": \"Spanish description\"    }  }}

You can create a new section by making a POST request to https://api.intercom.io/help_center/sections.

Request Body Parameters

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

Response

This will return a Section Model of the section you just created.