## Delete a dataset `client.Datasets.Delete(ctx, id) error` **delete** `/api/v1/datasets/{id}` Delete a dataset ### Parameters - `id string` ### Example ```go package main import ( "context" "github.com/plazafyi/plaza-go" "github.com/plazafyi/plaza-go/option" ) func main() { client := githubcomplazafyiplazago.NewClient( option.WithAPIKey("My API Key"), ) err := client.Datasets.Delete(context.TODO(), "id") if err != nil { panic(err.Error()) } } ```