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.
List facilities
Section titled “List facilities”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" }]Get facility
Section titled “Get facility”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"}