Bundle Offer

This section describe step to integration your store with API Bundle Offer

POST: /api-partner/bogos/bundle

circle-info

This endpoint is fetching all active bundles belonging to products

  • Body

{
   shop: string; // myshopify domain
   products: ProductInfo[];
   other?: OtherParams;
}
  • Response

{
    data: {
        product_info: ProductInfo;
        bundles: Bundle[]
    }[]
}

Last updated