Retrieve master value list

These endpoints allow you to retrieve the values of a master value list(s).

Get master value list

GET https://ris.rightsline.com/v4/master-value-list

This endpoint allows you to retrieve the master value list.

Headers

NameTypeDescription

x-api-key

string

Your company's API key.

Authentication

string

Authentication token.

[
    {
        "id": "196949bc-ea41-e511-9457-0af1f058195a",
        "name": " Audio Bitrate Kbps"
    },
    {
        "id": "1f6949bc-ea41-e511-9457-0af1f058195a",
        "name": " Audio Bits Per Sample"
    },
    {
        "id": "246949bc-ea41-e511-9457-0af1f058195a",
        "name": " Audio Codec"
    },
    {
        "id": "276949bc-ea41-e511-9457-0af1f058195a",
        "name": " Audio Container"
    }
]

Get master value list by ID

GET https://ris.rightsline.com/v4/master-value-list/:id

This endpoint allows you to retrieve a list by ID.

Path Parameters

NameTypeDescription

id

string

GUID of the master value list item.

Headers

NameTypeDescription

x-api-key

string

Your company's API key.

Authentication

string

Authentication token.

{
        "id": "196949bc-ea41-e511-9457-0af1f058195a",
        "name": " Audio Bitrate Kbps",
        "values": [
            {
                "id": 1,
                "label": "1125",
                "xref": null,
                "status": "Active"
            },
            {
                "id": 2,
                "label": "96",
                "xref": null,
                "status": "Active"
            },
            {
                "id": 3,
                "label": "320",
                "xref": null,
                "status": "Active"
            }
        ]
    }

Last updated