Deletes a media/folder from trash, permanently
v1
delete
/1/vod/channel/{channel}/browse/trash/{file}
Deletes a media/folder from trash, permanently.
channel
requiredstring
Examples:example
file
requiredstring
Examples:example
Response Body
application/json
Example request
<?php
use GuzzleHttp\Client;
$client = new Client();
$headers = [
'Authorization' => 'Bearer YOUR-TOKEN-HERE',
'Content-Type' => 'application/json'
];
$request = new Request('DELETE', 'https://api.infomaniak.com/1/vod/channel/{channel}/browse/trash/{file}', $headers, $body);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
Example response
application/json
{}