DELETE
/
apps
/
{appSlug}
/
datasets
/
{externalId}
from autoblocks.api.app_client import AutoblocksAppClient

client = AutoblocksAppClient(
  api_key="<YOUR_API_KEY>",
  app_slug="my-app",
)

delete_dataset_result = client.datasets.destroy(
  external_id="my-dataset"
)
{
  "success": true
}

Authorizations

Authorization
string
header
required

API Key created in the Autoblocks Webapp

Path Parameters

appSlug
string
required
externalId
string
required

Response

200 - application/json

The dataset was deleted successfully

The response is of type object.