Specimen Types

7 endpoints

List specimen types

List all specimen types with optional filtering

Parameters
page
integerPage number
page_size
integerPage size
category
stringFilter by category
is_active
booleanFilter by active status
search
stringSearch by code, name, or description
Responses
200Specimen types 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.specimen-types.list({
8 page: 1,
9 page_size: 1,
10 category: 'example',
11 is_active: true,
12 search: 'example',
13});
14
15console.log(result);