> For the complete documentation index, see [llms.txt](https://docs.mimiland.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mimiland.com/mimiland-core-services/cdn/api-references/delete-by-id.md).

# Delete By Id

Request

{% tabs %}
{% tab title="HTTP" %}

```http
DELETE /v1/features/story/649d3988c0f2f5aebe634933 HTTP/1.1
Host: storage-dev.api.mimiland.io
Accept: application/json
authorization: bearer v4.public.eyJhZC*****5xTtpdbQI
mm-client-id: mml
mm-user-id: 6552e9dd1f835ac7ca4ba3ec
```

{% endtab %}

{% tab title="JavaScript" %}

```javascript
const myHeaders = new Headers();
myHeaders.append("Accept", "application/json");
myHeaders.append("authorization", "bearer v4.public.eyJhZC*****5xTtpdbQI");
myHeaders.append("mm-client-id", "mml");
myHeaders.append("mm-user-id", "6552e9dd1f835ac7ca4ba3ec");

const requestOptions = {
  method: "DELETE",
  headers: myHeaders,
  redirect: "follow"
};

fetch("https://storage-dev.api.mimiland.io/v1/features/story/649d3988c0f2f5aebe634933", requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.mimiland.com/mimiland-core-services/cdn/api-references/delete-by-id.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
