Catalog

13 endpoints

List catalog items

List all catalog items with optional filtering by type

Parameters
page
integerPage number
page_size
integerPage size
type
stringFilter by item type (service, product, bundle)
active_only
booleanOnly return active items
search
stringSearch by name or code
Responses
200Catalog items list
401Unauthorized
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';
2
3const client = new Limbos({
4 apiKey: process.env.LIMBOS_API_KEY,
5});
6
7const result = await client.catalog.list({
8 page: 1,
9 page_size: 1,
10 type: 'example',
11 active_only: true,
12 search: 'example',
13});
14
15console.log(result);