Custody
3 endpoints
Get current custodian
Get the current custodian of a specimen
Parameters
idrequiredResponses
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';23const client = new Limbos({4 apiKey: process.env.LIMBOS_API_KEY,5});67const custody = await client.custody.get('id_here');89console.log(result);