Grace Health Tech

Update a sample status

PATCH
/lsm/revealia/update-status

Authorization

ght-api-key<token>

In: header

Request Body

application/jsonRequired
statusRequiredstring

Status to update the sample to

Value in: "Order Pending" | "Physician Approved Order" | "Order Sent to 3PL" | "Order Rejected by 3PL" | "Order Cancelled" | "Packing Initiated" | "Preparing to Ship" | "Shipped to Patient" | "Delivered to Patient" | "Kit Sent To Lab" | "In Review" | "Completed" | "Consult Required"

Query Parameters

revealiaIdRequiredstring

Revealia ID to update

curl -X PATCH "https://example.com/lsm/revealia/update-status?revealiaId=REV001" \
  -H "ght-api-key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "status": "Delivered to Patient"
  }'

Sample status updated successfully

{
  "success": true,
  "message": "Sample status updated successfully",
  "revealiaId": "REV001",
  "status": "Delivered to Patient"
}