Skip to main content
GET
/
checklist
/
missingroyaltysplits
Check Missing Royalty Splits
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/checklist/missingroyaltysplits \
  --header 'Authorization: Bearer <token>'
{
  "count": 23,
  "missingAssetSplits": [
    {
      "assetId": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
      "assetTitle": "Incomplete Track",
      "isrc": "USRC17607839",
      "reason": "No splits configured"
    }
  ],
  "missingProductSplits": [
    {
      "productId": "p1b2c3d4-e5f6-7890-1234-567890abcdef",
      "productTitle": "Incomplete Album",
      "upc": "123456789012",
      "reason": "Missing artist splits"
    }
  ]
}
/checklist/missingroyaltysplits Identifies sales records that are missing corresponding split configurations. Requirements:
  • BigQuery dataset must be configured for the tenant
  • Requires valid authentication
Headers:
  • x-tenant-id: Required. The tenant ID
  • Authorization: Required. Bearer token for authentication
Method: GET Response: The response contains a list of assets and products that are missing royalty splits, including:
  • Royalty_Type: Type of royalty
  • UPC: Product UPC
  • ISRC: Asset ISRC

Authentication

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

Responses

✅ 200 - Successfully retrieved missing royalty splits checklist

⚠️ 401 - Unauthorized

❌ 500 - Internal Server Error

Tags

Checklists

Authorizations

Authorization
string
header
required

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

Response

Successfully retrieved missing royalty splits checklist

count
integer

Total number of items missing royalty splits

missingAssetSplits
object[]

List of assets missing splits

missingProductSplits
object[]

List of products missing splits

I