api.clarify.io
  1. bundles
api.clarify.io
  • bundles
    • List bundles
      GET
    • Create a bundle
      POST
    • Delete a bundle
      DELETE
    • Get a bundle
      GET
    • Update a bundle
      PUT
    • Get bundle insights
      GET
    • Request an insight to be run
      POST
    • Get bundle insight
      GET
    • Delete bundle metadata
      DELETE
    • Get bundle metadata
      GET
    • Update bundle metadata
      PUT
    • Delete bundle tracks
      DELETE
    • Get bundle tracks
      GET
    • Add a track for a bundle
      POST
    • Update a tracks for a bundle
      PUT
    • Delete a bundle track
      DELETE
    • Get bundle track
      GET
    • Add media to a track
      PUT
  • reports
    • Generate Group Report <span class="label">beta</span>
      GET
    • Generate Trends Report <span class="label">beta</span>
      GET
  • search
    • Search bundles
      GET
  1. bundles

Update a tracks for a bundle

PUT
/v1/bundles/{bundle_id}/tracks

Update tracks for a bundle.

parts_complete a boolean true or false. If true, any tracks in the PENDING state will be queued for processing and no more media parts may be added to the tracks. Default is false.

If version specified, the track 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 track will always be updated.

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.clarify.io//v1/bundles//tracks' \
--data-urlencode 'parts_complete='
Response Response Example
200 - Example 1
{}

Request

Path Params
bundle_id
string 
required
id of a bundle
Body Params application/x-www-form-urlencoded
parts_complete
string 
required
Set to true if media parts in all tracks are complete. Default is false.
version
string 
optional
Object version.

Responses

🟢200OK
application/json
Body
object {0}
🟠400Bad request
🟠404Not found
🟠409Conflict
Modified at 2022-09-10 16:56:00
Previous
Add a track for a bundle
Next
Delete a bundle track
Built with