Reports
9 endpoints
List reports
Get all reports with optional filtering
Parameters
statusreport_typetemplate_idspecimen_idcustomer_idorder_iddate_fromdate_tosearchpagepage_sizeResponses
200List of reports
400Invalid input data
401Authentication required
403Access denied
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.reports.list({8 status: 'example',9 report_type: 'example',10 template_id: 'example',11 specimen_id: 'example',12 customer_id: 'example',13 order_id: 'example',14 date_from: 'example',15 date_to: 'example',16 search: 'example',17 page: 1,18 page_size: 1,19});2021console.log(result);