Restores one or many medias/folders from trash to their original location

v1
delete
/1/vod/channel/{channel}/browse/trash/restore

Path parameters

channel
requiredobject
Examples:{}

Response Body

application/json
resultstring
Possible values:successerrorasynchronous

Result of the HTTP request

Examples:success
dataobject

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/restore', $headers, $body);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
            

Example response

application/json
                
                    
{
"result":"success"
}