Bulk Untagging
DELETE /bulk_tagging
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.
Parameters
Section titled “ Parameters ”Header Parameters
Section titled “Header Parameters ” x-api-key
string
E.g. 123
Example
123Request Body
Section titled “Request Body ”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 ]}Untagging Orders
{ "order_ids": [ 11665891, 11665111 ], "tag_ids": [ 144441 ]}Responses
Section titled “ Responses ”OK