import { Livepeer } from "livepeer";const livepeer = new Livepeer({ apiKey: "<YOUR_BEARER_TOKEN_HERE>",});async function run() { const result = await livepeer.stream.removeMultistreamTarget("<id>", "<id>"); // Handle the result console.log(result);}run();
Copy
Ask AI
This response does not have an example.
Livestream
Remove a multistream target
DELETE
/
stream
/
{id}
/
multistream
/
{targetId}
TypeScript
Copy
Ask AI
import { Livepeer } from "livepeer";const livepeer = new Livepeer({ apiKey: "<YOUR_BEARER_TOKEN_HERE>",});async function run() { const result = await livepeer.stream.removeMultistreamTarget("<id>", "<id>"); // Handle the result console.log(result);}run();