Bundle Offer

POST: /api-partner/bogos/bundle

Fetch active bundles belonging to products

Example of BOGOS Bundle offers: BOGOS Demo store

  • Body

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

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

Last updated