Skip to content
GuidesPlaygroundDashboard

Delete a dataset

client.datasets.delete(stringid, RequestOptionsoptions?): void
DELETE/api/v1/datasets/{id}

Delete a dataset

ParametersExpand Collapse
id: string

Delete a dataset

import Plaza from '@plazafyi/sdk';

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

await client.datasets.delete('id');
Returns Examples