Template Specimen Types
3 endpoints
Get template specimen type by ID
Retrieve a specific template specimen type link by its UUID
Parameters
idrequiredResponses
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';23const client = new Limbos({4 apiKey: process.env.LIMBOS_API_KEY,5});67const templatespecimentypes = await client.template-specimen-types.get('id_here');89console.log(result);