Template Specimen Types

3 endpoints

Get template specimen type by ID

Retrieve a specific template specimen type link by its UUID

Parameters
idrequired
stringTemplate Specimen Type ID (UUID)
Responses
200Successfully retrieved specimen type link
400Invalid ID
401Authentication required
404Specimen type link not found
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 templatespecimentypes = await client.template-specimen-types.get('id_here');
8
9console.log(result);