Bulk Tagging
POST /bulk_tagging
POST
/bulk_tagging
Add tags to products or orders in bulk.
To tag products, use product_ids in the request body.
To tag 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 tag (use this OR order_ids)
Array
order_ids
Order IDs to tag (use this OR product_ids)
Array
tag_ids
required
Tag IDs to apply
Array
Examples
Tagging Products
{ "product_ids": [ 12355418, 12355419 ], "tag_ids": [ 144441 ]}Tagging Orders
{ "order_ids": [ 11665891, 11665111 ], "tag_ids": [ 144441 ]}Responses
Section titled “ Responses ”OK