action clarify_put_v1_bundles_bundle_id {
label: "Update a bundle"
description: "Update a bundle. To update the tracks, media, or metadata of a bundle, use the tracks and metadata endpoints.
name can be any string you wish to associate with the bundle.
external_id is an optional parameter that can be used to logically link a bundle to an item in an external system. The external_id can be whatever you use to identify items in your own database.
notify_url is a webhook. It must be a publicly accessible url (http or https) on your server to which notifications for the bundle will be POSTed. There are three types of notifications: Track Notifications, Insight Notifications and Bundle Notifications. For more information on the content of notifications and when they are sent, see the notification docs page.
If version is specified, the bundle will only be updated if the current version matches this parameter value. If the version doesn't match, a 409 Conflict error will be returned. If version not specified, the bundle will always be updated."
provider: clarify
method: PUT
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
}
}