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
| Parameter | Type | Constraints | Description | Example |
|---|---|---|---|---|
| id | integer | > 0, required | VOD object ID | 19 |
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"
}