Retrieves a tenant source association by its ID.
sources:read
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/sources/{id} \
--header 'Authorization: Bearer <token>'
{
"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}"
Tenant source ID
"ts-1"
Tenant source details
The response is of type object
.
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/sources/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "ts-1",
"settings": {},
"replacements": {},
"royaltySource": {
"id": "src-1",
"name": "Spotify",
"label": "Spotify",
"type": "DSP",
"format": "csv",
"public": true
}
}