Skip to main content
GET
/
checklist
/
assetsplits
Check Assets Splits
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/checklist/assetsplits \
  --header 'Authorization: Bearer <token>'
{
  "count": 156,
  "assetsplits": [
    {
      "assetId": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
      "assetTitle": "Hit Single",
      "isrc": "USRC17607839",
      "splits": [
        {
          "userId": "u1b2c3d4-e5f6-7890-1234-567890abcdef",
          "userName": "Artist One",
          "percentage": 70
        },
        {
          "userId": "u9e8d7c6-b5a4-3210-9876-543210fedcba",
          "userName": "Producer One",
          "percentage": 30
        }
      ]
    }
  ]
}
/checklist/assetsplits Retrieves information about assets and their split configurations. Response includes:
  • all: List of all asset IDs
  • defaultset: Assets with default splits configured
Headers:
  • x-tenant-id: Required. The tenant ID
  • Authorization: Required. Bearer token for authentication
Method: GET Response: The response contains a list of asset splits with their configurations.

Authentication

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

Responses

✅ 200 - Successfully retrieved asset 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 asset splits checklist

count
integer

Total number of asset splits

assetsplits
object[]
I