Skip to main content
GET
/
checklist
/
artistsplits
Check Artist Splits Users
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/checklist/artistsplits \
  --header 'Authorization: Bearer <token>'
{
  "count": 15,
  "missingArtistSplits": [
    {
      "id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
      "title": "Track Without Artist Split",
      "type": "asset",
      "artistId": "art1b2c3-e5f6-7890-1234-567890abcdef",
      "artistName": "Artist Name",
      "reason": "Artist not assigned to split configuration"
    },
    {
      "id": "p1b2c3d4-e5f6-7890-1234-567890abcdef",
      "title": "Album Without Artist Split",
      "type": "product",
      "artistId": "art2c3d4-e5f6-7890-1234-567890abcdef",
      "artistName": "Another Artist",
      "reason": "Split percentage not defined for artist"
    }
  ]
}
/checklist/artistsplits Identifies artists with default splits that reference non-existent tenant users. Headers:
  • x-tenant-id: Required. The tenant ID
  • Authorization: Required. Bearer token for authentication
Method: GET Response:
  • message: Status message
  • invalidSplits (if any): Array of objects with:
    • artistId: ID of the artist
    • artistName: Name of the artist
    • invalidUserIds: Array of invalid user IDs referenced in splits

Authentication

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

Responses

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

count
integer

Total number of items missing artist splits

missingArtistSplits
object[]
I