Skip to content

Bulk Untagging

DELETE
/bulk_tagging

Remove tags from products or orders in bulk.

To untag products, use product_ids in the request body. To untag orders, use order_ids in the request body instead.

x-api-key
string

E.g. 123

Example
123
object
product_ids

Product IDs to untag (use this OR order_ids)

Array
order_ids

Order IDs to untag (use this OR product_ids)

Array
tag_ids
required

Tag IDs to remove

Array
Examples

Untagging Products

{
"product_ids": [
12355418,
12355419
],
"tag_ids": [
144441
]
}

OK