put https://api.jwplayer.com/v2/sites//live/broadcast/streams//remove_ingest/
Unassign a live ingest point from a live stream
The request is rejected if the live stream does not have a live ingest point assigned to it.
Responses
Unassign a live ingest point from a live stream
The request is rejected if the live stream does not have a live ingest point assigned to it.
xxxxxxxxxx
12import requests
​
url = "https://api.jwplayer.com/v2/sites/site_id/live/broadcast/streams/stream_id/remove_ingest/"
​
headers = {
"accept": "application/json",
"content-type": "application/json"
}
​
response = requests.put(url, headers=headers)
​
print(response.text)
Try It!
to start a request and see the response here! Or choose an example: