This documentation is under active development and content may change as the platform evolves.

Facility

Facilities are the physical locations within your organization where cryogenic samples are stored and procedures are performed. B2B integrations use the facility ID when creating procedures.

Terminal window
curl https://api.crinsutrack.com/api/v1/external/facilities \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Example Response:

[
{
"id": 1,
"name": "Main Facility",
"address": "123 Main Street, New York, NY 10001",
"createdAt": "2024-01-01T00:00:00Z"
},
{
"id": 2,
"name": "Downtown Lab",
"address": "456 Lab Street, New York, NY 10002",
"createdAt": "2024-01-10T00:00:00Z"
}
]
Terminal window
curl https://api.crinsutrack.com/api/v1/external/facilities/1 \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Example Response:

{
"id": 1,
"name": "Main Facility",
"address": "123 Main Street, New York, NY 10001",
"createdAt": "2024-01-01T00:00:00Z"
}
All rights reserved. This documentation may not be used, copied, displayed, or published without the express authorization of CRINSURANCE. Unauthorized use may result in legal action.