Delete Asset

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

Path Parameters
  • asset_id
    Type: string
    required

    Asset id of the video asset which needs to be deleted.

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

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

await client.videoAssets.delete('assetId');