GET
/
api
/
v1
/
prescriptions
/
statuses
curl --request GET \
  --url https://api.byblend.com/api/v1/prescriptions/statuses \
  --header 'Authorization: Bearer <token>'
[
  [
    "new",
    "reviewed",
    "verified",
    "exception",
    "cancelled",
    "filled",
    "completed"
  ]
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful response with all prescription statuses.

The response is of type string[].