Add tags to many orders

Method : POST

https://admin.vucustom.com/api/:api_version/orders

Request body schema

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
curl --location 'https://admin.vucustom.com/api/:api_version/orders/tags/bulk' \
--data '{
    "orders": [
        {
            "id": 12345,
            "order_number": ""
        }
    ],
    "tags": [
        "tag1",
        "tags2"
    ]
}'

200 Successful response example

{}

Last updated