List campaigns
GET /v1/campaigns
Requires campaigns:read. Supports pagination:
pagination.page >= pagination.totalPages.
Campaign detail
GET /v1/campaigns/{campaignId}
Returns full metadata for one campaign: name, status, target type (track or playlist), dates, and identifiers you need to join metrics rows.
Both list and detail rows include generation — a resource version for the campaign (1 Stripe/legacy, 2 managed, 3 wallet). Only generation 3 can be managed via the API (budget changes, tier updates, stop).
Use the campaignId from the list response in all /metrics/* paths.
Typical sync flow
- Daily:
GET /v1/campaigns— upsert catalog - Daily: export or paginated metrics per active campaign
- Warehouse: join metrics on
campaign_id+account_id(your organization UUID from each row)
Organization scope
Your organization is determined only from the API key. You never passorganization_id in query params — rows already include account_id for your org.
Node.js users can paginate campaigns with
soundlink.campaigns.listAll() — see TypeScript SDK.