Custody

3 endpoints

Get current custodian

Get the current custodian of a specimen

Parameters
idrequired
stringSpecimen ID
Responses
200Current custodian
400Invalid request
401Unauthorized
403Module not enabled
404No custody events 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 custody = await client.custody.get('id_here');
8
9console.log(result);