Skip to main content
GET
/
v1
/
rights
List rights
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://sandbox.api.enfinitos.com/v1/rights', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "ok": true,
  "data": {
    "rights": [
      {
        "id": "<string>",
        "orgId": "<string>",
        "basisId": "<string>",
        "parentRightId": "<string>",
        "scope": "<string>",
        "effectiveFrom": "2023-11-07T05:31:56Z",
        "effectiveUntil": "2023-11-07T05:31:56Z",
        "contentHash": "<string>",
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ],
    "nextCursor": 123,
    "total": 123
  },
  "contractVersion": "<string>"
}

Authorizations

Authorization
string
header
required

API key sent as Authorization: Bearer <api-key>.

Query Parameters

status
enum<string>

Filter by lifecycle status.

Available options:
ACTIVE,
SUSPENDED,
REVOKED,
EXPIRED,
WITHDRAWN
substrate
enum<string>

Filter to a single substrate. Delivery substrate. The platform runtime recognises every value; which ones ship a dedicated client SDK varies (see the substrate readiness matrix). ANY matches all substrates.

Available options:
DOOH,
CTV,
MOBILE,
STREAMING,
AUDIO,
MESSAGING,
GAMING,
GLASSES,
AR_CONTACTS,
HUD,
VOLUMETRIC,
HOLOGRAM,
WEARABLES,
AMBIENT,
NEURAL,
AUTOMOTIVE,
SMART_HOME,
ROBOTICS,
DRONE,
SATELLITE,
AVIATION,
MARITIME,
SOCIAL_FEED,
ANY
cursor
integer
default:0

Zero-indexed pagination cursor (slice start). Echo nextCursor from the previous page.

Required range: x >= 0
limit
integer
default:50

Max items per page, clamped to [1, 200]. Defaults to 50.

Required range: 1 <= x <= 200

Response

A page of rights.

ok
boolean
required
data
object
required

Route-specific payload. Operation responses refine this.

contractVersion
string
required
Allowed value: "v1.0"