Passer au contenu principal
DELETE
/
stream
/
{id}
/
multistream
/
{targetId}
TypeScript
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();
{
  "errors": [
    [
      "id not provided",
      "Account not found"
    ]
  ]
}

Supprimer la cible Multistream

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

id
string
requis

ID of the parent stream

targetId
string
requis

ID of the multistream target

Réponse

Success (No content)

Last modified on March 3, 2026