Browse the Help Center for platform guides or API & Developers for integration docs.
cURL
curl --request POST \ --url https://open.beatpass.ca/api/v1/tracks/{id}/generate-license \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "license_type": "exclusive", "usage_terms": "Commercial use allowed" } '
{ "status": "success", "license": { "uuid": "550e8400-e29b-41d4-a716-446655440000", "track_id": 1, "license_type": "exclusive" } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Track ID
1
Type of license (exclusive, non-exclusive, etc.)
"exclusive"
Terms of usage for the license
"Commercial use allowed"
License generated successfully
"success"
Show child attributes
Was this page helpful?