Pharmacy
Shipping
Get Tracking Info

Get Tracking Info For An Order

Returns tracking links associated with an order.

Overview

  • Method: GET
  • Path: /pharmacy/shipping/get-tracking-info/<orderId>
  • Tags: pharmacy

Parameters

orderId (path)

  • Type: string
  • Required: Yes
  • Description: orderId parameter

Request Body

No request body required.

Responses

200

Successful response

Content Type: application/json

{
  "trackingInfo": "string",
  "url": "string",
  "tracking_number": "string",
  "fulfillment_id": "string",
  "created_at": "2024-01-01T00:00:00.000Z",
  "updated_at": "2024-01-01T00:00:00.000Z"
}

400

Bad Request

Content Type: application/json

{
  "error": "string",
  "details": [
    {}
  ]
}

401

Unauthorized

404

Not Found

500

Internal Server Error

Example Usage

curl -X GET \
  https://api.pillexa.com/pharmacy/shipping/get-tracking-info/<orderId> \
  -H "Content-Type: application/json" \