For the complete documentation index, see llms.txt. This page is also available as Markdown.

Add value to master list

Add a new value to a master list of values.

Add value to master list

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

This endpoint allows you to add a value to a master value list.

Path Parameters

Name
Type
Description

listID*

guid

The ID of the master list.

Headers

Name
Type
Description

Authorization*

String

Authorization token.

x-api-key*

String

Your company's API key.

Content-Type*

String

application/json

Request Body

Name
Type
Description

label*

String

Value label.

description*

String

Value description.

xref

String

Value XREF.

status

String

Active/Inactive

{
    "message": "Char value set {master-value-list-id} already contains a value with the label {label}. Please update the label field in your request and try again."
}
{
    "message": "No char value set found with ID {master-value-list-id}"
}

Value was created successfully. New master list values are returned.

[
    {
        "id": 1,
        "label": "A",
        "description": "the letter A",
        "xref": "A",
        "status": "Active"
    },
    {
        "id": 2,
        "label": "B",
        "description": "the letter B",
        "xref": "B",
        "status": "Active"
    }
]

Last updated

Was this helpful?