Skip to main content
Skip table of contents

API: Rest Get Article Version by Version ID

The Get Articles Version commands allow you to return the content of an article specified by ID or name.  This command returns the article ID, name, description, author email, author name, title, author bio, deck, callout, and body of each article.  

GET /templates

https://[siteurl]/rest/articles/[articleID]/versions/[article version ID]

Request Body Parameters

The Get Articles Version command requires only the URI call. No additional fields are required in the JSON.

Request Body Example

Using Get Articles Versions:

curl --request GET \
--url 'https://api.whatcounts.net/rest/articles/1234/versions/22635' \
--header 'authorization: Basic bXlBY2NvdW50Onh5enB3ZDEyMw==' \
--header 'accept: application/vnd.whatcounts-v1+json' \
--header 'content-type: application/json' \
--include

Response Body

SUCCESS

The Get Template Version commands do not explicitly return a Success code.  Instead, it outputs the template data.  Use the Output Format argument to return the results in a specific format. 

JSON
{
        "skip": 0,
        "max": 0,
        "articleId": 22635,
        "realmId": 1234,
        "name": "Name",
        "description": "creating an article via rest api",
        "authorEmail": "authorEmail",
        "authorName": "authorName",
        "title": "Title",
        "createdDate": "Mar 20, 2024 14:37:00 PM",
        "updatedDate": "Mar 20, 2024 14:39:11 PM",
        "folderId": -1,
        "authorBio": "authorBio",
        "dek": "Dek",
        "callout": "callout",
        "body": "Body",
        "parentArticleId": 1234,
        "saveMode": "text",
        "dto": {
            "skip": 0,
            "max": 0,
            "articleId": 22635,
            "realmId": 1262,
            "name": "Name",
            "description": "creating an article via rest api",
            "authorEmail": "authorEmail",
            "authorName": "authorName",
            "title": "Title",
            "createdDate": "Mar 20, 2024 14:37:00 PM",
            "updatedDate": "Mar 20, 2024 14:39:11 PM",
            "folderId": -1,
            "authorBio": "authorBio",
            "dek": "Dek",
            "callout": "callout",
            "body": "Body",
            "parentArticleId": 1234,
            "childCount": 0
            }
}

FAILURE

A Get Template command will fail for several reasons.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.