Retrieve File Revisions

Retrieve a list of the existing revisions of a specific file.

Get file revisions

GET https://ris.rightsline.com/v4/file/:id/revisions

This endpoint allows you to retrieve a list of all the existing revisions of a file.

Path Parameters

NameTypeDescription

id*

string

ID of the file to retrieve.

Headers

NameTypeDescription

x-api-key

string

Your company's API key.

Authentication

string

Authentication token.

[
    {
        "id": "3534-0",
        "revision": 0
    }
    {
        "id": "3534-1",
        "revision": 1
    },
    {
        "id": "3534-2",
        "revision": 2
    },
    ...
]

Last updated