New order notifications

Hey @starren,
You can create a bundle by making a POST request to the /kits endpoint. Your request body should contain a product variant to convert and the contents of the bundle, like so:

{
   'product_variant_id': 123,
   'contents': [
     { 'product_variant_id': 4999, 'quantity': 5 },
     { 'product_variant_id': 5000, 'quantity': 1 },
     { 'product_variant_id': 5001, 'quantity': 3 },
  ]
}

This post may be of use to you.