Skip to content

Article Version Summary

A metadata summary of an article version, as returned by the version-history list endpoint. Omits the version's body content - fetch a single version to retrieve its body and body_markdown.

typestring

String representing the object's type. Always has the value article_version.

Value:"article_version"
Example:"article_version"
idstring

The unique identifier for the version.

Example:"301"
article_idstring

The unique identifier of the article this version belongs to.

Example:"123"
titlestring

The title of the article at this version.

Example:"This is the article title"
descriptionstring or null

The description of the article at this version.

Example:""
author_idstring

The id of the teammate listed as the article's author at this version.

Example:"991267502"
created_by_idstring or null

The id of the teammate who created this version.

Example:"5017691"
created_viastring

How this version was created (for example web, api).

Example:"web"
from_version_idstring or null

The id of the version this version was created from, or null if this is the first version.

Example:"300"
statestring

Whether this version is the currently published version of the article (published) or an earlier non-live version (draft).

Enum:"published""draft"
Example:"published"
created_atinteger, (date-time)

The time the version was created, as a UTC Unix timestamp.

Example:1734537292
{ "type": "article_version", "id": "301", "article_id": "123", "title": "This is the article title", "description": "", "author_id": "991267502", "created_by_id": "5017691", "created_via": "web", "from_version_id": "300", "state": "published", "created_at": 1734537292 }