Retrieves a royalty source by its ID.
sources:admin:read
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/sources/admin/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "src-1",
"name": "Spotify",
"label": "Spotify",
"type": "DSP",
"format": "csv",
"public": true
}
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Royalty source ID
"src-1"
Royalty source details
The response is of type object
.
curl --request GET \
--url https://server26-dot-royalti-project.uc.r.appspot.com/sources/admin/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "src-1",
"name": "Spotify",
"label": "Spotify",
"type": "DSP",
"format": "csv",
"public": true
}