Use this endpoint to sort videos in your playlist.
apiv2/playlists/sort/<PARTNER_ID>.json
This method is type of POST and will not receive any GET parameters.
PARTNER_ID is an integer ID of your web property/site in Brid CMS.
Parameters:
Name | Type | Description |
---|---|---|
data[Playlist][partner_id] *required | integer | Partner id |
data[Playlist][id] *required | integer | Playlist id |
data[Playlist][sort] *required | string | Sorted video ids |
<?php
require_once('lib/BridApi.php');
try {
$api = new BridApi(array('auth_token'=>'b1437c94847d7e19268ad3bda0e46f8f6bc36f45'));
$post = array('data[Playlist][partner_id]'=>'13085', 'data[Playlist][id]'=>'123456', 'data[Playlist][sort]'=>'1,2,3,4,5,6');
$return = $api->post(['playlists', 'sort', 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 Partner ID when trying out these examples.