Retrieves a paginated list of all sources associated with the current tenant.
sources:read
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/sources \
--header 'Authorization: Bearer <token>'
{
"count": 1,
"rows": [
{
"id": "ts-1",
"settings": {},
"replacements": {},
"royaltySource": {
"id": "src-1",
"name": "Spotify",
"label": "Spotify",
"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 tenant sources
The response is of type object
.
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/sources \
--header 'Authorization: Bearer <token>'
{
"count": 1,
"rows": [
{
"id": "ts-1",
"settings": {},
"replacements": {},
"royaltySource": {
"id": "src-1",
"name": "Spotify",
"label": "Spotify",
"type": "DSP",
"format": "csv",
"public": true
}
}
]
}