This endpoint provides detailed information about a specific modifier group, including all associated options, linked store items, and complete configuration details. This is useful for reviewing or auditing modifier group setups.
This endpoint returns the complete structure of a modifier group, making it ideal for detailed analysis or debugging configuration issues.
Path Parameters
The unique identifier of the store
The unique identifier of the modifier group
Response
Array containing the modifier group details (typically one object) Show Detailed Modifier Group Object
Unique identifier for the modifier group
Name of the modifier group
Minimum number of options customer must select
Maximum number of options customer can select
Type of options in this group
Associated store identifier
Maximum number of free options allowed
Maximum quantity for each option
Current status of the modifier group
External identifier for the modifier group
Deletion timestamp (null if not deleted)
Description of the modifier group
Number of items linked to this modifier group
Number of options in this modifier group
store_item_modifier_groups_mapping
Array of linked store items with full details
Array of all options in this modifier group with full details
Response Example
[
{
"id" : "1000124" ,
"name" : "MG Test 3 - Updated" ,
"min_quantity" : 0 ,
"max_quantity" : 2 ,
"precedence" : 0 ,
"option_type" : "Customization" ,
"store_id" : "449235c1-3d04-4519-998b-40d2a621e5e0" ,
"max_free_options" : 0 ,
"max_options_qty" : 2 ,
"status" : "active" ,
"external_id" : "5606aa02-34ce-4ed1-819b-b76bc81151c0" ,
"createdAt" : "2024-05-02T00:57:35.628Z" ,
"updatedAt" : "2024-05-02T00:58:01.654Z" ,
"deletedAt" : null ,
"description" : "Modifier group for drinks" ,
"linked_items_count" : "2" ,
"options_count" : "3" ,
"store_item_modifier_groups_mapping" : [
{
"id" : "1000094" ,
"store_item_id" : "3dbe1e78-c746-4940-8db8-ef468c738324" ,
"modifier_group_id" : "1000124" ,
"createdAt" : "2024-05-02T00:57:36.280Z" ,
"updatedAt" : "2024-05-02T00:57:36.280Z" ,
"deletedAt" : null ,
"storeItem" : {
"id" : "3dbe1e78-c746-4940-8db8-ef468c738324" ,
"name" : "Build Your Own Sandwich" ,
"description" : "With your choice of bread, meat, cheese and toppings." ,
"price" : "6.99"
}
}
],
"options" : [
{
"id" : "1000346" ,
"modifier_group_id" : "1000124" ,
"price" : "0.00" ,
"store_item_id" : "2edc15af-2552-45a2-a149-d670279e27f3" ,
"status" : "active" ,
"precedence" : 0 ,
"external_id" : "22b222b1-a5ed-4907-a4e5-71f52e2ab7ab" ,
"default_qty" : 0 ,
"storeItem" : {
"id" : "2edc15af-2552-45a2-a149-d670279e27f3" ,
"name" : "Small" ,
"price" : "0.0"
}
}
]
}
]
Use this endpoint to get a complete overview of a modifier group’s configuration, including all linked items and available options.
The response includes nested objects for linked store items and options, providing complete details without requiring additional API calls.