Create a data default

Create a data default set

POST https://ris.rightsline.com/v4/:charType/data-default

Create a new data default for a char type.

Path Parameters

NameTypeDescription

charType*

string

Char Type that data default set will apply to. (deal, catalog-item, etc.)

Headers

NameTypeDescription

x-api-key

string

Your company's API key.

Authentication

string

Authentication token.

Request Body

NameTypeDescription

recordIds*

ids

List of records that the set contains. This will be the table or right record ids.

label*

string

Name of the list, will show in UI.

setCharTypeId*

id

Char Type Id that the recordIds are.

{
    "id": "0f5ea7c5-e469-ed11-8340-065151be1e5f",
    "label": "Test From API"
}

Sample Create Data Default Request Body - 2 Table rows, for a table profile

{
    "recordIds": [
        2485974,
        2485975
    ],
    "setCharTypeId": 5,
    "label": "Test From API"
}

Last updated