Retrieve catalog item statuses

Get catalog item statuses

GET https://ris.rightsline.com/v4/catalog-item-statuses/{templateId}

This endpoint allows you to retrieve status data for catalog-items.

Path Parameters

NameTypeDescription

templateId

integer

The catalog-item template ID.

Headers

NameTypeDescription

x-api-key

string

Your company's API key.

Authentication

string

Authentication token.

{
    "statuses": [
        {
            "statusId": 1,
            "statusName": "Development"
        },
        {
            "statusId": 2,
            "statusName": "Packaging/Financing"
        },
        {
            "statusId": 16,
            "statusName": "Greenlit"
        },
        {
            "statusId": 3,
            "statusName": "Production"
        },
        {
            "statusId": 4,
            "statusName": "Post-Production"
        },
        {
            "statusId": 17,
            "statusName": "Delivery"
        },
        {
            "statusId": 14,
            "statusName": "Awaiting Release"
        },
        {
            "statusId": 6,
            "statusName": "Released"
        },
        {
            "statusId": 18,
            "statusName": "Active, Deletable, Unlocked"
        },
        {
            "statusId": 12,
            "statusName": "Inactive, Deletable, Unlocked"
        },
        {
            "statusId": 19,
            "statusName": "Inactive, Not Deletable, Locked"
        },
        {
            "statusId": 20,
            "statusName": "Inactive, Deletable, Locked"
        },
        {
            "statusId": 21,
            "statusName": "Inactive"
        }
    ]
}

Last updated