Customers
7 endpoints
List customers
Get a list of customers within the authenticated tenant. Supports pagination with offset/limit.
Parameters
limitoffsetorder_bydirectionsearchResponses
200Successfully retrieved customer list
401Authentication required
403Access denied - insufficient permissions
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.customers.list({8 limit: 1,9 offset: 1,10 order_by: 'example',11 direction: 'example',12 search: 'example',13});1415console.log(result);