List Tenant Sources
Sources
List Tenant Sources
Retrieves a paginated list of all sources associated with the current tenant.
GET
List Tenant Sources
This endpoint requires authentication. Include your Bearer token in the Authorization header.
Description
Required Permissions
sources:read
Query Parameters Behavior
distinct=false (default): Returns paginated tenant source associations- Response format:
{ count: number, rows: TenantSource[] } - Shows tenant’s configured sources with settings and replacements
- Respects pagination parameters
- Response format:
RoyaltySource[](direct array, not paginated) - Shows all public sources available to add (not just tenant’s sources)
- Only includes sources where
isActive=trueandpublic=true - Pagination parameters are ignored
Business Rules
- Only shows active sources (
isActive=true) - Tenant context automatically determined from authentication
Code Examples
Authorizations
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Query Parameters
Page number for pagination (ignored when distinct=true)
Example:
1
Page size for pagination (ignored when distinct=true)
Example:
100
If 'true', returns array of all available public sources (non-paginated). If 'false', returns paginated tenant source associations.
Available options:
true, false