patch https://api.jwplayer.com/v2/sites//playlists//dynamic_playlist/
Responses
xxxxxxxxxx
12import requests
​
url = "https://api.jwplayer.com/v2/sites/site_id/playlists/playlist_id/dynamic_playlist/"
​
payload = { "metadata": { "media_filter": {
"sort": "publish_start_date:dsc",
"limit": 25
} } }
headers = {
"accept": "application/json",
"content-type": "application/json"
}
​
response = requests.patch(url, json=payload, headers=headers)
​
print(response.text)
Try It!
to start a request and see the response here! Or choose an example: