Retrieves a paginated list of all royalty sources in the system.
sources:admin:read
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/sources/admin \
--header 'Authorization: Bearer <token>'
{
"count": 2,
"rows": [
{
"id": "src-1",
"name": "Spotify",
"label": "Spotify",
"type": "DSP",
"format": "csv",
"public": true
},
{
"id": "src-2",
"name": "Apple Music",
"label": "Apple Music",
"type": "DSP",
"format": "csv",
"public": true
}
]
}
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Page number for pagination
1
Page size for pagination
100
If true, only distinct public sources are returned
true
, false
List of royalty sources
The response is of type object
.
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/sources/admin \
--header 'Authorization: Bearer <token>'
{
"count": 2,
"rows": [
{
"id": "src-1",
"name": "Spotify",
"label": "Spotify",
"type": "DSP",
"format": "csv",
"public": true
},
{
"id": "src-2",
"name": "Apple Music",
"label": "Apple Music",
"type": "DSP",
"format": "csv",
"public": true
}
]
}