action clarify_get_v1_bundles_bundle_id_tracks { label: "Get bundle tracks" description: "Gets the array of tracks for a bundle. This includes the specification of the media and the status of fetching and processing it.

Media for tracks 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" encoding: json input: { type: "object" properties: { bundle_id: { type: "string" } } required: ["bundle_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }