Skip to main content
GET
/
checklist
/
royaltyassets
Check Royalty Assets
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/checklist/royaltyassets \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "royaltyassets": [
    {
      "isrc": "<string>",
      "title": "<string>",
      "version": "<string>",
      "artist": "<string>",
      "displayArtist": "<string>",
      "type": "<string>",
      "mainGenre": "<string>",
      "subGenre": "<string>"
    }
  ]
}
/checklist/royaltyassets Retrieves a list of royalty assets that exist in the sales data but don’t have corresponding asset records. Requirements:
  • BigQuery dataset must be configured for the tenant
  • Requires valid authentication
Method: GET Headers:
  • x-tenant-id: Required. The tenant ID
  • Authorization: Required. Bearer token for authentication

Authentication

This endpoint requires authentication. Include your bearer token in the Authorization header.

Responses

βœ… 200 - Successfully retrieved royalty assets

⚠️ 400 - Bad Request - Missing or invalid parameters

⚠️ 401 - Unauthorized - Missing or invalid authentication

❌ 500 - Internal Server Error - Error processing request

Tags

Checklists

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Response

Successfully retrieved royalty assets

count
integer

Total number of royalty assets

royaltyassets
object[]
⌘I