GuideLab API

List orders currently blocked by an active hold

Returns a bounded cursor page of on-hold orders for the authenticated lab. Patient names honor the order's lab-masking policy.

GET
/dashboard/blocked-orders

Returns a bounded cursor page of on-hold orders for the authenticated lab. Patient names honor the order's lab-masking policy.

Authorization

__Secure-guidelab-prod.session_token<token>

Production session cookie set for the guidelab.co domain by Better Auth

In: cookie

Query Parameters

severity?string

Value in

  • "critical"
  • "high"
  • "medium"
cursor?string
Length1 <= length <= 1024
limit?integer
Range1 <= value <= 50
Default10

Response Body

application/json

curl -X GET "https://example.com/dashboard/blocked-orders"
{  "data": [    {      "id": "string",      "orderNumber": "string",      "holdId": "string",      "holdReasonName": "string",      "blockedAt": "string",      "blockedHours": 0,      "overdueDays": 0,      "severity": "critical",      "deadline": "string",      "patientName": "string",      "practiceName": "string",      "deepLink": "string"    }  ],  "counts": {    "all": 0,    "critical": 0,    "high": 0,    "medium": 0  },  "nextCursor": "string"}
Empty
Empty
Empty