Delete Live Asset

This endpoint removes a live asset given its unique live asset id. The live asset will be removed from storage as well, associated URLs will be inaccessible.

Path Parameters
  • live_asset_id
    Type: string
    required

    Live asset id of the live asset which needs to be deleted.

Responses
  • application/json
  • application/json
Request Example for delete/video/live/assets/{live_asset_id}
import Gumlet from '@gumlet/nodejs-sdk';

const client = new Gumlet({
  apiKey: process.env['API_KEY'], // defaults to the API_KEY env var
});

const liveStreamAsset = await client.liveStreamAssets.delete('liveAssetId');

console.log(liveStreamAsset);
{}