delete
https://developer.dacast.com/v2/vod//subtitles
Remove one or more subtitle tracks from a VOD by subtitle-id (comma-separated ids query parameter).
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Remove one or more subtitle tracks from a VOD. Pass subtitle-id values from List subtitles in the ids query parameter (comma-separated).
DELETE /v2/vod/{id}/subtitles?ids={subtitle-id}
Authenticate withX-Api-Keyand sendX-Format: default. Host:https://developer.dacast.com. No request body. Success returns 200 with an empty body.
| Parameter | In | Required | Notes |
|---|---|---|---|
id | path | yes | VOD UUID. |
ids | query | yes | One or more subtitle-id values, comma-separated. |
If any id in ids does not exist on the VOD, the API returns 400 and does not remove the others. After a successful delete, confirm with List subtitles; the list can briefly still show a removed track - re-check after a short delay if needed.
curl -X DELETE "https://developer.dacast.com/v2/vod/{id}/subtitles?ids=11111111-2222-3333-4444-555555555555,22222222-3333-4444-5555-666666666666" \
-H "X-Api-Key: insertYourApiKeyHere" \
-H "X-Format: default"