/checklist/royaltyproducts
Retrieves a list of royalty products that exist in the sales data but donāt have corresponding product records.
Requirements:
Method:
GET
Headers:
x-tenant-id
: Required. The tenant IDAuthorization
: Required. Bearer token for authenticationResponse:
count
: Total number of royalty productsroyaltyproducts
: Array of product objects with details about their respective status.curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/checklist/royaltyproducts \
--header 'Authorization: Bearer <token>'
{
"count": 70,
"royaltyproducts": [
{
"Aggregator": "Merlin",
"upc": "660902548873",
"isrcs": [
"NGA601900055"
],
"Release_Name": "Eat Some",
"Release_Artist": "Stev_O",
"Label": "Steveland Emmanuel"
},
{
"Aggregator": "Merlin",
"upc": "669014748225",
"isrcs": [
"NGA601800031"
],
"Release_Name": "Striker",
"Release_Artist": "Stev_O",
"Label": "Steveland Emmanuel"
},
{
"Aggregator": "Merlin",
"upc": "660902548859",
"isrcs": [
"NGA601900057"
],
"Release_Name": "Our Eyes",
"Release_Artist": "Tunestar",
"Label": "SPIRIT SOUND GROUP (SSG)"
}
]
}
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Successfully retrieved royalty products checklist
The response is of type object
.
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/checklist/royaltyproducts \
--header 'Authorization: Bearer <token>'
{
"count": 70,
"royaltyproducts": [
{
"Aggregator": "Merlin",
"upc": "660902548873",
"isrcs": [
"NGA601900055"
],
"Release_Name": "Eat Some",
"Release_Artist": "Stev_O",
"Label": "Steveland Emmanuel"
},
{
"Aggregator": "Merlin",
"upc": "669014748225",
"isrcs": [
"NGA601800031"
],
"Release_Name": "Striker",
"Release_Artist": "Stev_O",
"Label": "Steveland Emmanuel"
},
{
"Aggregator": "Merlin",
"upc": "660902548859",
"isrcs": [
"NGA601900057"
],
"Release_Name": "Our Eyes",
"Release_Artist": "Tunestar",
"Label": "SPIRIT SOUND GROUP (SSG)"
}
]
}