Test Types
3 endpoints
List active test types
Retrieve all active test types available for the authenticated tenant
Parameters
categoryResponses
200List of test types
401Authentication required
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.test-types.list({8 category: 'example',9});1011console.log(result);