Recommendation Categories

The Recommendation Categories Import Endpoint

https://{BASE_URL}/imports/recommendation_categories

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 Recommendation Categories to the endpoint. Existing categories are overwritten based on their id.

[
    {
        "id": "similar",
        "name": "Similar"
    },
    {
        "id": "also_bought",
        "name": {
            "en": "Other customers also bought",
            "da": "Andre kunder købte også"
        }
    }
]

Shared Integration Queue Parameters

For all integration queue import endpoints, you need to specify account, integration and apikey. Please read the Import Queues below for details about these parameters.

https://{BASE_URL}/imports/recommendation_categories?account=[ACCOUNT ID]&integration=[INTEGRATION QUEUE ID]&apikey=[INTEGRATION QUEUE API KEY]

Deleting Recommendation Categories

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

[
  "similar", "upsale"
]