POST /releases//tracks/link-asset
This endpoint allows linking an existing Asset to a release as a new track. The Asset’s data will be used as defaults, which can be overridden with theoverrides
parameter. Only releases in ‘draft’ or ‘rejected’ status can have Assets linked.
Authentication
This endpoint requires authentication. Include your bearer token in the Authorization header.Path Parameters
Parameter | Type | In | Required | Description |
---|---|---|---|---|
id | string | path | ✅ | Release ID |
Request Body
Responses
✅ 201 - Asset linked successfully
⚠️ 400 - undefined
⚠️ 401 - undefined
⚠️ 404 - undefined
❌ 500 - undefined
Tags
Track Management
Authorizations
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Path Parameters
Release ID
Body
application/json
UUID of the existing Asset to link
Example:
"550e8400-e29b-41d4-a716-446655440000"
Optional specific track number (if not provided, will use next available)
Required range:
x >= 1
Example:
2
Optional fields to override from the Asset's data
Example:
{
"title": "Radio Edit Version",
"explicit": "clean"
}