action clarify_delete_v1_bundles_bundle_id_metadata { label: "Delete bundle metadata" description: "Delete the metadata of a bundle and set data to {} (empty object.) This is functionally equivalent to an update metadata request with data set to {}.

Successful response will be a HTTP code 204 with an empty body." provider: clarify method: DELETE path: "/v1/bundles/{bundle_id}/metadata" encoding: json input: { type: "object" properties: { bundle_id: { type: "string" } } required: ["bundle_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }