List Tenant Offerings
GET /v1/product/:id/offerings
Retrieves a collection of offerings (products/services) available to a specific tenant. This endpoint returns offerings with their current status, pricing, subscription details, and associated configurations. Results can be filtered by tenant to narrow down the collection.
Response Example
[
{
"_id": "offering-id-1",
"name": "Example Offering",
"tenant": "tenant-id-1",
"status": {
"active": true,
"deleted": false
},
"price": 100,
"subscription": true,
"created": "2025-01-01T00:00:00.000Z",
"updated": "2025-01-01T00:00:00.000Z"
}
]