GET
/
api
/
v1
/
prescriptions
/
{prescription_id}
/
status_history
curl --request GET \
  --url https://api.byblend.com/api/v1/prescriptions/{prescription_id}/status_history \
  --header 'Authorization: Bearer <token>'
[
  {
    "status": "new",
    "updated_at": "2025-04-25T00:52:21.742570",
    "updated_by": {
      "id": "b658f16f-819c-4503-aede-bd555fc4ebfb",
      "first_name": "John",
      "last_name": "Doe"
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

prescription_id
string
required

Unique identifier for the prescription (UUID).

Response

200 - application/json

Successful response with prescription status history

The response is of type object[].