# Create a collection ## Example Request & Response (Multilingual Help Center) ```curl $ curl https://api.intercom.io/help_center/collections \\\n-X POST \\\n-H 'Authorization:Bearer ' \\\n-H 'Accept:application/json'\n-H 'Content-Type: application/json' -d\n\n{\n \"name\": \"Collection 1\",\n \"description\": \"English description\",\n \"translated_content\": {\n \"es\": {\n \"name\": \"Colección 1\",\n \"description\": \"Spanish description\"\n }\n }\n} ``` ```http HTTP/1.1 200 OK\n{\n \"id\": 1,\n \"type\": \"collection\",\n \"workspace_id\": \"abcdef\",\n \"name\": \"Collection 1\",\n \"description\": \"English description\", \n \"created_at\": 123456,\n \"updated_at\": 123456,\n \"url\": \"http://intercom.test/help/collection/collection-1\",\n \"icon\": \"http://intercom/help_center/icon-1\",\n \"order\": 0,\n \"default_locale\": \"en\",\n \"translated_content\": {\n \"type\": \"group_translated_content\",\n \"es\": {\n \"type\": \"group_content\",\n \"name\": \"Colección 1\",\n \"description\": \"Spanish description\"\n }\n }\n} ``` You can create a new collection by making a POST request to `https://api.intercom.io/help_center/collections`. ### Request Body Parameters | Key | Type | Required? | Description | | --- | --- | --- | --- | | name | String | Yes | The name of the collection.For multilingual collections, this will be the name of the default language's content. | | description | String | No | The description of the collection.For multilingual collections, this will be the description of the default language's content. | | translated_content | String | No | A [Group Translated Content Object](/docs/references/2.6/rest-api/help-center/the-collection-section-models#group-translated-content-object) whereby you can specify multiple multilingual collections to be created. | ### Response This will return a [Collection Model](/docs/references/2.6/rest-api/help-center/the-collection-section-models) of the collection you just created.