Skip to main content
DELETE
/
api
/
datasets
/
{dataset_id}
Python
import os
from woodwide import WoodWide

client = WoodWide(
    api_key=os.environ.get("WOOD_WIDE_AI_API_KEY"),  # This is the default and can be omitted
)
dataset = client.api.datasets.delete(
    dataset_id="dataset_id",
)
print(dataset)
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

dataset_id
string | null
required

Query Parameters

dataset_name
string | null

Response

Successful Response