Exports a media to an external platform

v1
post
/1/vod/channel/{channel}/browse/{file}/export

Path parameters

channel
requiredobject
Examples:{}
file
requiredobject
Examples:{}

Response Body

application/json
resultstring
Possible values:successerrorasynchronous

Result of the HTTP request

Examples:success
data

Can be any value - string, number, boolean, array or object.

Example request

                <?php
use GuzzleHttp\Client;

$client = new Client();
$headers = [
	'Authorization' => 'Bearer YOUR-TOKEN-HERE',
	'Content-Type' => 'application/json'
];

$request = new Request('POST', 'https://api.infomaniak.com/1/vod/channel/{channel}/browse/{file}/export', $headers, $body);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
            

Example response

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