List of configurators to be deleted or to be upserted for a list of products. These configurators will be displayed on the PDP and thus integrated into the customer's experience, improving user engagement and efficiency.
No Additional ItemsA configurator to be deleted or to be upserted for a list of products
UPSERT action is used to add a new configurator or update an existing a configurator for products.
If the configurator does not exist, the UPSERT action adds the configurator and its associated products.
If the configurator exists, the UPSERT action updates the configurator for its associated products.
Action defines if the configurator has to be:
- UPSERT
: added or updated.
- DELETE
: deleted.
The unique identifier for a configurator
"supplier123"
"configurator456"
The list of productIds associated with the configurator
No Additional Items[
"productId1",
"productId2"
]
[
"productId3"
]
DELETE action is used to delete a configurator for all of its associated products.
If the configurator does not exist, the DELETE action is ignored.
If the configurator exists, the DELETE action deletes the configurator for all of its associated products.
Action defines if the configurator has to be:
- UPSERT
: added or updated.
- DELETE
: deleted.
The unique identifier for a configurator
"supplier123"
"configurator456"
{
"configuratorId": "supplier123",
"action": "UPSERT",
"productIds": [
"productId1",
"productId2"
]
}
{
"configuratorId": "configurator456",
"action": "DELETE"
}
[
{
"configuratorId": "supplier123",
"action": "UPSERT",
"productIds": [
"productId1",
"productId2"
]
},
{
"configuratorId": "configurator456",
"action": "DELETE"
}
]