Skip to main content
GET
/
checklist
/
artistsplits
Check Artist Splits Users
curl --request GET \
  --url https://api.royalti.io/checklist/artistsplits \
  --header 'Authorization: Bearer <token>'
{
  "message": "All artist split users are valid"
}
This endpoint requires authentication. Include your Bearer token in the Authorization header.

Description

/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

Code Examples

const response = await fetch('https://api.royalti.io/checklist/artistsplits', {
  method: 'GET',
  headers: {
    'Authorization': `Bearer ${token}`,
  },
});

const data = await response.json();
console.log(data);

Authorizations

Authorization
string
header
required

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

Response

Successful operation

message
string
required
Example:

"All artist split users are valid"