FDIP REST API
v1 · OpenAPI 3.1
Base URL:
https://fdip.strides.io/api/v1
GET /api/v1/bodies
List all bodies
Bodies
Headers
Authorization: Bearer sk_live_*** Content-Type: application/json X-Facility-Id: fac_hyd_01
Auth
Bearer token (JWT) Scopes: bodies.read, doors.write, alerts.read
Response 200
{
"data": [
{
"id": "B-0001",
"caseNo": "CASE-2026-1001",
"rfid": "E280-1234",
"status": "In Shelf",
"zone": "Cold Rooms"
}
],
"total": 200
}cURL
curl -X GET 'https://fdip.strides.io/api/v1/bodies' \ -H 'Authorization: Bearer sk_live_***' \ -H 'Content-Type: application/json'