curl --request GET \
--url https://api.royalti.io/checklist/artistsplits \
--header 'Authorization: Bearer <token>'{
"message": "All artist split users are valid"
}/checklist/artistsplits
curl --request GET \
--url https://api.royalti.io/checklist/artistsplits \
--header 'Authorization: Bearer <token>'{
"message": "All artist split users are valid"
}x-tenant-id: Required. The tenant IDAuthorization: Required. Bearer token for authenticationmessage: Status messageinvalidSplits (if any): Array of objects with:
artistId: ID of the artistartistName: Name of the artistinvalidUserIds: Array of invalid user IDs referenced in splitsconst response = await fetch('https://api.royalti.io/checklist/artistsplits', {
method: 'GET',
headers: {
'Authorization': `Bearer ${token}`,
},
});
const data = await response.json();
console.log(data);