Skip to main content
Version: v1

Delete VOD Object

This method deletes a VOD object

Request Parameters

DELETE /api/clients/v1/vod/{id}/

Headers

  • Content-Type: application/json
  • Authorization: Bearer $access_token

Path

ParameterTypeConstraintsDescriptionExample
idinteger> 0, requiredVOD object ID19

Response Parameters

Examples

204 No Content

VOD object deleted

400 Bad Request

Invalid path parameters provided

{
"id": [
"A valid integer is required."
]
}
401 Unauthorized

Authentication credentials were missing or invalid

{
"detail": "Given token not valid for any token type",
"code": "token_not_valid",
"messages": [
{
"token_class": "AccessToken",
"token_type": "access",
"message": "Token is invalid or expired"
}
]
}
403 Forbidden

VOD object deletion is only allowed for project participants associated with its source

{
"detail": "Only project participants can manage this project's VOD"
}
404 Not Found

VOD object with this ID not found

{
"detail": "VOD not found"
}