> For the complete documentation index, see [llms.txt](https://vu-custom.gitbook.io/vu-custom/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://vu-custom.gitbook.io/vu-custom/admin-api/orders/delete-tags-from-many-orders.md).

# Delete tags from many orders

Method : <mark style="color:green;">**DELETE**</mark> &#x20;

{% code fullWidth="false" %}

```url
https://os.vucustom.com/api/v1/orders/tags/bulk
```

{% endcode %}

Request body schema

<table><thead><tr><th width="155">Field Name</th><th width="107">type</th><th></th></tr></thead><tbody><tr><td>orders</td><td>array</td><td>This array contains objects. Each object in this array represents an order. for each object specify either order_number or id</td></tr><tr><td>tags</td><td>array</td><td>This array contains strings. each string is a tag which will be removed from all orders in the orders array specified above.</td></tr></tbody></table>

<details>

<summary>Example Request </summary>

```json
{
    "orders": [
        {
            "id": 12345,
            "order_number": "ORD12345"
        }
    ],
    "tags": [
        "tag1",
        "tags2"
    ]
}
```

</details>

{% tabs %}
{% tab title="200" %}
**`200 Successful response example`**

```json
{}
```

{% endtab %}

{% tab title="401 " %}
**`401 Unauthorized`**

`The client doesn’t have correct authentication credentials.`

```
{
"errors": "[API] Invalid API key or secret (unrecognized login or wrong password)"
}
```

{% endtab %}

{% tab title="403" %}
**`403 Forbidden`**

`The server is refusing to respond. This is typically caused by incorrect access.`
{% endtab %}

{% tab title="404" %}
**`404 Not Found`**

`The requested resource was not found but could be available again in the future.`
{% endtab %}

{% tab title="422" %}
**`422 Unprocessable Entity`**
{% endtab %}

{% tab title="5xx" %}
**`5xx Errors`**

`An internal error occurred in VU Admin.`
{% endtab %}
{% endtabs %}
