action clarify_get_v1_bundles_bundle_id_tracks_track_id { label: "Get bundle track" description: "Gets a single track in a bundle. This includes the specification of the media and the status of fetching and processing it.

Media for a track is fetched asynchronously. Until media has been retrieved, a track's duration and size will both be set to -1." provider: clarify method: GET path: "/v1/bundles/{bundle_id}/tracks/{track_id}" encoding: json input: { type: "object" properties: { bundle_id: { type: "string" } track_id: { type: "string" } } required: ["bundle_id", "track_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }