Tags

The Tags Import Endpoint

https://{BASE_URL}/imports/tags

All import integration endpoints use the same authentication parameters, please see Authentication page for more details.

Like the Product Import, this endpoint uses Import Queues to handle all imported data.

You may post any amount of Tags to the endpoint. Existing tags are overwritten based on their id.

[
    {
        "tag": "popular",
        "name": { "da": "Populære", "en": "Popular" }
    },
    {
        "tag": "new",
        "name": { "da": "Nye varer", "en": "New products" }
    },
    ...
]

The name is an L10nString and may thus be supplied with or without localizations.

Deleting Tags

Send an HTTP DELETE request to the endpoint with a body containing a JSON array of Tag ids.

[
  "new", "popular"
]