Delete Profile

This endpoint removes a profile given its unique profile_id. The profile will be removed but video assets created using the profile will remain as it is.

Path Parameters
  • profile_id
    Type: string
    required

    Profile id of the profile which needs to be deleted.

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

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

const videoProfile = await client.videoProfiles.delete('profileId');

console.log(videoProfile);
{}