PATCH
/
multistream
/
target
/
{id}
import { Livepeer } from "livepeer";

const livepeer = new Livepeer({
  apiKey: "<YOUR_BEARER_TOKEN_HERE>",
});

async function run() {
  const result = await livepeer.multistream.update({
    url: "rtmps://live.my-service.tv/channel/secretKey",
  }, "<id>");

  // Handle the result
  console.log(result);
}

run();
This response does not have an example.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

ID of the multistream target

Body

application/json
url
string
required

Livepeer-compatible multistream target URL (RTMP(S) or SRT)

Example:

"rtmps://live.my-service.tv/channel/secretKey"

name
string
disabled
boolean

If true then this multistream target will not be used for pushing even if it is configured in a stream object.

Response

204
_mintlify/placeholder

Success