For the complete documentation index, see llms.txt. This page is also available as Markdown.

Delete tags from an order

Method : DELETE

https://os.vucustom.com/api/v1/orders/tags?id=&order_number=

URL Parameters

Field Name
type

orders

array

This array contains objects. Each object in this array represents an order. for each object specify either order_number or id

tags

array

This array contains strings. each string is a tag which will be applied to all orders in the orders array specified above.

Example Request
{
    "orders": [
        {
            "id": 12345,
            "order_number": "ORD12345"
        }
    ],
    "tags": [
        "tag1",
        "tags2"
    ]
}

200 Successful response example

{}

401 Unauthorized

The client doesn’t have correct authentication credentials.

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

403 Forbidden

The server is refusing to respond. This is typically caused by incorrect access.

404 Not Found

The requested resource was not found but could be available again in the future.

422 Unprocessable Entity

5xx Errors

An internal error occurred in VU Admin.

Last updated