Test Types

3 endpoints

List active test types

Retrieve all active test types available for the authenticated tenant

Parameters
category
stringFilter by category
Responses
200List of test types
401Authentication required
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.test-types.list({
8 category: 'example',
9});
10
11console.log(result);