Sign in

Update asset track

documented

Update a track on an asset.

PATCH /video/v1/assets/{ASSET_ID}/tracks/{TRACK_ID}Video APIno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.mux.com/video/v1/assets/{{$ASSET_ID}}/tracks/{{$TRACK_ID}}" \
  -X PATCH \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -u "{{MUX_API_KEY}}:{{MUX_API_SECRET}}" \
  -d '{"language_code": "{{$language_code}}", "name": "{{$name}}", "closed_captions": {{$closed_captions}}, "passthrough": "{{$passthrough}}"}'