import { Livepeer } from "livepeer";
const livepeer = new Livepeer({
apiKey: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await livepeer.multistream.delete("<id>");
// Handle the result
console.log(result);
}
run();
Copier
Demander à l'IA
{
"errors": [
[
"id not provided",
"Account not found"
]
]
}
Multistream
Supprimer la cible Multistream
Livepeer point d’extrémité de l’API Studio
DELETE
/
multistream
/
target
/
{id}
TypeScript
Copier
Demander à l'IA
import { Livepeer } from "livepeer";
const livepeer = new Livepeer({
apiKey: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await livepeer.multistream.delete("<id>");
// Handle the result
console.log(result);
}
run();
Copier
Demander à l'IA
{
"errors": [
[
"id not provided",
"Account not found"
]
]
}