Manual Merchandising

Prev Next

The Manual Merchandising algorithm retrieves product details that are manually specified, returning only products that are in stock. It enables you to showcase specific products or content (for special days, etc.) from a list specified in the campaign configuration. In addition, only the products that are in stock will be displayed in the recommendation widget. This type of algorithm can be used on all page types to promote specific products.

Endpoint

GET https://recommendation.api.useinsider.com/v2/manual-merchandising

You need to write Product IDs as comma-separated in the productId parameter, such as productId=ed061306,287a4a89,8f0db743,69de9b05

Query Parameters

ParameterSample ValueDescriptionData TypeRequired
partnerNamemybrandPartner Identifier assigned by Insider. You can use PartnerID as well.StringYes
localeus_USLocale of requested product catalog.
StringYes
platformwebRequested platform. Web comes by default.EnumNo
currencyUSDRequested currency of the products. If no value is set, the default currency in your settings is used.StringYes
productIdABC1234The id of the product whose complementary is requested.
StringYes
userIdtestUserUser IDStringNo
hpfalse, true or 0, 1Makes affinities affect products of the response. The default is false.
BooleanNo (Can only be used with userId)
size
50Required number of items in response. Valid values are 0 to 100.
IntegerNo
filter
Smart Recommender filtering. There can be more than one filter parameter.
StringNo
detailstrueAdds details to the products of the response.BooleanNo
shufflefalseShuffles the products of the response.BooleanNo
getGroupProductsfalseShows variant products under the products of the response.
BooleanNo
groupProductsFields

Adds these fields to the variant products’ details.
StringNo
excludeVariants
trueExclude variants from the response.
BooleanNo
excludeViewDay
30After how many days viewed products should be excluded. The default is -1.
IntegerNo (Can only be used with userId)
excludeViewItem
10How many viewed products should be excluded. The default is -1.
IntegerNo (Can only be used with userId)
excludePurchaseDay
30After how many days purchased products should be excluded. The default is -1.
IntegerNo (Can only be used with userId)
excludePurchaseItem
10How many purchased products should be excluded. The default is -1.
IntegerNo (Can only be used with userId)

Sample Request

The sample below displays a request to the Manual Merchandising algorithm.

GET https://recommendation.api.useinsider.com/v2/manual-merchandising?partnerName={Partner Name}&locale={Locale}&currency={Currency}&productId=ABC12345,XYZ12345

Sample Response

{
    "success": true,
    "total": 2,
    "types": {
        "mm": 2
    },
    "data": [
        "ABC12345",
        "XYZ12345"
    ]
}

Fallback Algorithms

There is no fallback algorithm for this recommendation type, as only requested items are recommended.