Update an article
Example Request & Response (Multilingual Help Center)
$ curl https://api.intercom.io/articles/<id> \\\n-X PUT \\\n-H 'Authorization:Bearer <Your access token>' \\\n-H 'Accept:application/json'\n-H 'Content-Type: application/json' -d\n\n{\n \"title\": \"New title\",\n \"translated_content\": {\n \"es\": {\n \"title\": \"Nuevo tÃtulo\",\n \"state\": \"published\",\n \"body\": \"<p>Spanish body in html</p>\",\n \"author_id\": \"1\"\n }\n }\n}
You can update the details of a single article by making a PUT request to https://api.intercom.io/articles/<id>
.
Request Path Parameters
Parameter | Type | Required? | Description |
---|---|---|---|
id | String | Yes | The unique identifier for the article which is given by Intercom. |
Request Body Parameters
Attribute | Type | Required? | Description |
---|---|---|---|
title | String | No | The title of the article. For multilingual articles, this will be the title of the default language's content. |
description | String | No | The description of the article. For multilingual articles, this will be the description of the default language's content. |
body | String | No | The body of the article in HTML. For multilingual articles, this will be the body of the default language's content. |
author_id | String | No | The id of the author of the article. For multilingual articles, this will be the id of the author of the default language's content. Must be a teammate on the help center's workspace. |
state | String | No | Whether the article will be published or will be a draft .For multilingual articles, this will be the state of the default language's content. |
parent_id | String | No | The id of the article's parent collection or section. An article without this field stands alone. |
parent_type | String | No | The type of parent, which can either be a collection or section . |
translated_content | Object | No | An Article Translated Content Object whereby you can specify multiple multilingual articles to be updated. |
Response
This will return an Article model of the article you just updated.