Orders
7 endpoints
List all orders
List all orders for the tenant with pagination and filtering
Parameters
pagepage_sizestatuspayment_statuscustomer_idsearchdate_fromdate_toorder_byorder_dirResponses
200Orders list
401Unauthorized
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';23const client = new Limbos({4 apiKey: process.env.LIMBOS_API_KEY,5});67const result = await client.orders.list({8 page: 1,9 page_size: 1,10 status: 'example',11 payment_status: 'example',12 customer_id: 'example',13 search: 'example',14 date_from: 'example',15 date_to: 'example',16 order_by: 'example',17 order_dir: 'example',18});1920console.log(result);