Update a Live Stream

update a live stream

PUT https://api.dyntube.com/v1/live-streams/{id}

The content type of the HTTP request should be application/json. Please have a look at the sample JSON body below.

Sample JSON Body

Here is a sample JSON request to update a live stream.


{
    "id": "6dWVR5343889MV3lQ",
    "name": "My Stream Update",
    "description": "",
    "auth": false,
    "encrypt": false,
    "record": false,
    "storageProjectId": '',
    "platforms": [
        {
            "service": 4,
            "address": "rtmp://syd03.contribute.live-video.net/app",
            "streamKey": "1211212"
        }
    ]
}

Last updated