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.
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:
/playlist/<PLAYLIST_ID>/videos/<VIDEO_ID>
/playlist/<PLAYLIST_ID>/videos
with an empty ids query-string parameterIndeed 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