Grouped Product

Grouped product (product set) operations

Retrieve grouped product detail

get

Returns detail information for a grouped product, including all member products and combined pricing.

Grouped Products: A grouped product represents a collection of related products sold together, such as:

  • Furniture sets (table + chairs)

  • Outfit combinations (shirt + pants + accessories)

  • Kit products (main product + accessories)

Response Includes:

  • Main grouped product information

  • List of all member products with individual details

  • Combined total price and retail price for the group

  • Stock availability across all group members

Pricing:

  • group_products_total_price: Sum of all member product prices

  • group_products_total_retail_price: Sum of all member retail prices

Path parameters
product_idintegerRequired

Unique identifier of the grouped product.

Must be a product with type "grouped".

Example: 5678
Responses
chevron-right
200

Grouped product detail retrieved successfully

application/json

Response for grouped product detail page.

Contains the main grouped product and all its member products.

in_stockbooleanRequired

Aggregate stock status across all group members.

True if at least one member product is in stock.

Example: true
group_products_total_pricestringRequired

Sum of all member product prices.

Calculated as: sum(product.price × initial_quantity) for all members.

Example: 549.99
group_products_total_retail_pricestringRequired

Sum of all member retail prices.

Useful for showing total savings on the group.

Example: 699.99
get
/group-product/{product_id}/

Last updated

Was this helpful?