Skip to main content
POST
/
help-content
/
articles
/
save
Save help content article.
curl --request POST \
  --url https://api.example.com/help-content/articles/save \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "articleID": null,
  "languageID": null,
  "title": "How Display Modes Work",
  "articleCode": "DISPLAYMODEBASICS",
  "articleCategoryID": null,
  "summary": null,
  "urlPath": null,
  "isHidden": true,
  "articleBodyMarkdown": null,
  "isIsolatedLanguageUpdate": null,
  "articleExposureAreaIDs": [
    123
  ]
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
articleID
integer<int32> | null
languageID
integer<int32>
title
string | null
default:How Display Modes Work
articleCode
string | null
default:DISPLAYMODEBASICS
articleCategoryID
integer<int32>
summary
string | null
urlPath
string | null
Maximum string length: 150
isHidden
boolean
articleBodyMarkdown
string | null
isIsolatedLanguageUpdate
boolean | null
articleExposureAreaIDs
integer<int32>[] | null

Response

Success

success
boolean
data
unknown