phpdailymotion-api

How to delete a video from a playlist with the DailyMotion API?


How can I delete a video from a playlist using the DailyMotion API in PHP?

I was reading the documentation, but I did not find an answer to my question.


Solution

  • The paragraph you should read for deleting videos from a playlist is the following: https://developer.dailymotion.com/api#playlist-videos-connection-delete

    Basically, a playlist's video is a video connection on the playlist object. To delete a video from a playlist, you have to delete this connection:

    Indeed you can do it using the PHP SDK (see https://developer.dailymotion.com/tools/sdks#sdk-php) :

    $api->delete("/playlist/".$playListId."/videos/".$videoId."");
    

    Or you can make a test call using the API Explorer https://developer.dailymotion.com/tools#/playlist/videos/delete