Use this endpoint to add video to specific playlist for your site.
apiv2/playlists/addVideo/.json
This method is type of POST and will not receive any GET parameters.
Parameters:
Name | Type | Description |
---|---|---|
data[Playlist][partner_id] *required | integer | Partner id |
data[Playlist][id] *required | integer | Playlist id |
data[Video][ids] *required | string | Video ids to be added to the playlist |
<?php
require_once('lib/BridApi.php');
try {
$api = new BridApi(array('auth_token'=>'b1437c94847d7e19268ad3bda0e46f8f6bc36f45'));
$post = array('data[Playlist][partner_id]'=>'123456', 'data[Playlist][id]'=>'789', 'data[Video][ids]'=>'1,2,3,4,5,6');
$return = $api->post(['playlists', 'addVideo', 13085], $post);
print_r($return);
}
catch(Exception $e) {
echo $e->getMessage();
}
?>
BridApi.php is a small library we provide in our git repository which allows you to quick-start your implementation so we advise you to use it. These examples are made with this library in mind. Make sure to substitute and use your own authorization token and playlist data when trying out these examples.