Skip to content

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.

x-api-key
string

E.g. 123

Example
123
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
]
}

OK