DELETE
{micro_service_base_url}
/
inventory
/
stores
/
{store_id}
/
modifier-groups
/
{modifier_group_id}
/
mappings
{
  "success": true,
  "deletedLinkedItems": [
    {}
  ],
  "notDeletedLinkedItems": [
    {}
  ],
  "message": "<string>"
}
This endpoint removes the link between store items and a modifier group. After unlinking, customers will no longer see the modifier group’s customization options for those specific items.
Removing item mappings will immediately affect customer ordering experience. Ensure this change aligns with your menu strategy.

Path Parameters

store_id
string
required
The unique identifier of the store
modifier_group_id
string
required
The unique identifier of the modifier group

Body

mapping_ids
array
required
Array of mapping IDs to delete from the modifier group

Request Example

[1000024, 1000025]

Response

success
boolean
Indicates if the operation was successful
deletedLinkedItems
array
Array of mapping IDs that were successfully deleted
notDeletedLinkedItems
array
Array of mapping IDs that could not be deleted (may not exist or have dependencies)
message
string
Success message describing the operation result

Response Example

{
  "success": true,
  "deletedLinkedItems": [
    1000025
  ],
  "notDeletedLinkedItems": [
    1000024
  ],
  "message": "Store item modifier group mapping deleted successfully"
}
Mappings that couldn’t be deleted may be referenced by pending orders or have other active dependencies.
Before deleting mappings, consider if any active orders depend on these customization options. This helps prevent order fulfillment issues.