Get
/v2/Articles/{articleId}/{langCode}
Security
API Key
Header parameter nameapi_token

Enter REST API key. To generate a key, go to Settings → Knowledge base portal → API tokens

Path parameters
articleId
stringRequired

The ID of the article

langCode
stringRequired

Language code of the article

Default"en"
Query parameters
isForDisplay
boolean

Set this to true, if you are displaying the article to the end-user. If true, the content of snippets or variables appears in the article. Note: If the value is true, ensure that the article content is not passed for update article endpoints.

Default"False"
isPublished
boolean

true : You will get the latest published version of the article. (If there are no published versions, then it will return the latest version)
false : To get the the latest version of the article

Default"False"
appendSASToken
boolean

Set this to false to exclude appending SAS token for images/files

Default"True"
Responses
200
400
Show example

Success

Collapse all
object
data
object (ArticleVersionDataCustomerResponse)
id
string | null

The ID of the article

title
string | null

The title of the article

content
string | null

If the article editor is Markdown, then the article content will be present in this property

html_content
string | null

If the article editor is WYSIWYG (HTML), then the content will be present in this property. Note: Markdown editor will also have HTML content (read-only).

category_id
string | null

The ID of the article's parent category

project_version_id
string | null

The ID of the project version where the article is located

version_number
integer (int32)

The currently fetched version number of the article

public_version
integer (int32)

The currently published version number of the article

latest_version
integer (int32)

The latest version number of the article

enable_rtl
boolean

True indicates that Right to Left alignment is enabled for the article language

hidden
boolean

False indicates that the article is visible on the site

status
integer (int32)

The status of the article: 0 - Draft, 3 - Published

Valid values[ 0, 3 ]
order
integer (int32)

The position inside the parent category

created_by
string | null

The ID of the team account who created the article

authors
Array of object (UserDetailsCustomer) | null

The list of contributors in the article

object
created_at
string (date-time)

The date on which the article was created

modified_at
string (date-time)

The date on which the article was last modified

slug
string | null

The slug of the article

is_fall_back_content
boolean

True indicates that the article content is a fallback of the default language content

description
string | null

The description of the article

category_type
integer (int32)

0 - Folder, 1 - Page, 2 - Index

Valid values[ 0, 1, 2 ]
content_type
integer (int32)

0 - Markdown; 1 - WYSIWYG(HTML); 2 - Advanced WYSIWYG

Valid values[ 0, 1, 2 ]
is_shared_article
boolean

True indicates that the article is shared

translation_option
integer (int32)

0 - None, 1 - Needs transation, 2 - Translated, 3 - In progress

Valid values[ 0, 1, 2, 3 ]
url
string | null

Url of the article

extension_data
object (ExtensionDataObject)
success
boolean

Status indication for customer API response

errors
Array of object (BaseError) | null

Errors in the customer API response

object
warnings
Array of object (BaseWarning) | null

Warnings in the customer API response

object
information
Array of object (BaseInformation) | null

Information passed by the customer API response

object