Create Bundle
POST /v1/product/bundle
Creates a new product bundle with the specified configuration including name, associated products, pricing, and availability settings. This endpoint validates the input data, applies default values where needed, and returns the complete created bundle object. The response includes the generated bundle identifier and timestamps for creation and updates.
Request Body
{
"name": "Bundle name",
"products": [
{
"id": "{{group_id}}",
"amount": 2
}
],
"ingress": "Bundle short description",
"price": 100,
"available_to": {
"tenants": [],
"config": {
"isAll": true,
"isPublic": true
}
}
}