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>"
}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>"
}The access token received from the authorization server in the OAuth 2.0 flow.
150