Skip to main content
GET
/
sources
/
{id}
Get Tenant Source by ID
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
  }
}
Retrieves a tenant source association by its ID.

Required Permissions

  • sources:read

Authentication

This endpoint requires authentication. Include your bearer token in the Authorization header.

Path Parameters

ParameterTypeInRequiredDescription
idstringpathāœ…Tenant source ID

Responses

āœ… 200 - Tenant source details

āš ļø 401 - undefined

āš ļø 404 - undefined

āŒ 500 - undefined

Tags

Sources

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Path Parameters

id
string
required

Tenant source ID

Example:

"ts-1"

Response

Tenant source details

id
string
Example:

"ts-1"

settings
object
Example:
{}
replacements
object
Example:
{}
royaltySource
object
⌘I