---
title: "Delete Series"
method: DELETE
path: "/{databaseId}/series/{seriesId}"
tags: ["Series"]
---

# Delete Series

`DELETE /{databaseId}/series/{seriesId}`

Deletes the series of the given `seriesId` from the database.

Deleting a series will only delete assignment of items to it, not the items themselves!

## Path parameters

- `databaseId` string, required
- `seriesId` string, required

## Request body

- DeleteSeries
  - `cascadeDelete` boolean — If set to `true`, item with the same ID as seriesId will be also deleted. Default is `false`.

## Response `200`

Successful operation.

## Other responses

- `400` — The `seriesId` does not match ^[a-zA-Z0-9_\-:@\.]+$.
- `404` — Series of the given `seriesId` is not present in the database. In many cases, you may consider this code a success – it only tells you that nothing has been deleted from the database since the series was already not present. If there is no additional info in the JSON response, you probably have an error in your URL.

---

[API](https://skmtc.dev/recombee/apis/recombee-api.md) · [All operations](https://skmtc.dev/recombee/apis/recombee-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/recombee/recombee-api/revisions/a9c9c33eb2e8/schema)
