Update a collection

Example Request & Response (Multilingual Help Center)

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

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

Request Path Parameters

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

Request Body Parameters

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

Response

This will return a Collection Model of the collection you just updated.