action clarify_delete_v1_bundles_bundle_id {
label: "Delete a bundle"
description: "Delete a bundle and its related metadata and tracks. This will only delete media stored on Clarify systems and not delete the source media on remote systems.
Successful response will be a HTTP code 204 with an empty body."
provider: clarify
method: DELETE
path: "/v1/bundles/{bundle_id}"
encoding: json
input: {
type: "object"
properties: {
bundle_id: {
type: "string"
}
}
required: ["bundle_id"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}