Get Bundles
GET /v1/product/bundle
Retrieves a list of product bundles available in the system. This endpoint allows filtering by tenant and search terms to find specific bundles. Each bundle includes its name, associated products, pricing, and availability configuration.
Query Parameters
~search- Parameter for ~search~filter[_id]- Parameter for ~filter[_id]~filter[tenant]- Parameter for ~filter[tenant]
Request Example
GET /v1/product/bundle
Response Example
[
{
"_id": "bundle-id-1",
"name": "Example Bundle",
"tenant": "tenant-id-1",
"products": [
{
"id": "product-id-1",
"amount": 2
}
],
"ingress": "Bundle description",
"price": 100,
"available_to": {
"tenants": [],
"config": {
"isAll": true,
"isPublic": true
}
},
"created": "2025-01-01T00:00:00.000Z",
"updated": "2025-01-01T00:00:00.000Z"
}
]