Status with clinic code

Gets the status of the order by using Pharmacy Order Number or Clinic Order Number and will need to provide Clinic Code. Either Pharmacy OrderNumber or Clinic Number should be provided. This Api call should also be used by the Clinic System Supplier where they would be sending scripts on behalf of Clinics.

get

Get /status { "orderId": 1, "clinicOrderId": "abc1234", "clinicCode": "cl1234", }

Authorizations
Query parameters
orderIdinteger · int32Optional

Use Pharmacy Order Number

clinicOrderIdstringOptional

Your (Clinic) order reference

clinicCodestringOptional

Clinic Code.

Responses
200
Returns the status of the order.
application/json
get
GET /api/v1/Order/status-with-clinic-code HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
  {
    "clinicOrderId": "text",
    "pharmacyOrderId": "text",
    "orderStatus": "text",
    "dispatchDate": "2025-06-25T08:00:12.227Z",
    "trackingId": "text",
    "cancelReason": "text"
  }
]

Last updated