Home//
REST API Reference
/- Article Version
List all articles
Create an article
Retrieve an article
Update an article
Delete an article
Retrieve an article draft
Stage an article draft
Publish an article draft
Add a tag to an article
Remove a tag from an article
List article versions
Retrieve an article version
Search for articles
Article
Articles
Article Search Highlights
Article Search Response
Article Version Summary
Internal Article
Article Version
A historical version of an article, including its content.
String representing the object's type. Always has the value article_version.
Value:"article_version"
Example:"article_version"
The HTML body of the article at this version.
Example:"<p class=\"no-margin\">Body of this version</p>"
The Markdown body of the article at this version.
Example:"Body of this version\n"
The id of the version this version was created from, or null if this is the first version.
Example:"300"
Whether this version is the currently published version of the article (published) or an earlier non-live version (draft).
Enum:"published""draft"
Example:"published"
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": "", "body": "<p class=\"no-margin\">Body of this version</p>", "body_markdown": "Body of this version\n", "author_id": "991267502", "created_by_id": "5017691", "created_via": "web", "from_version_id": "300", "state": "published", "created_at": 1734537292, "updated_at": 1734537292 }