Skip to content
Get started

Delete

client.models.delete(stringmodelID, RequestOptionsoptions?): ModelDeleteResponse
DELETE/models/{modelId}

Delete a model

ParametersExpand Collapse
modelID: string
ReturnsExpand Collapse
ModelDeleteResponse = unknown

Delete

import Scenario from '@scenario-labs/sdk';

const client = new Scenario({
  apiKey: process.env['SCENARIO_SDK_API_KEY'], // This is the default and can be omitted
  apiSecret: process.env['SCENARIO_SDK_API_SECRET'], // This is the default and can be omitted
});

const model = await client.models.delete('modelId');

console.log(model);
{}
Returns Examples
{}