Skip to main content
GET
/
pg
/
orders
/
{order_id}
/
status
Get Order Status
curl --request GET \
  --url https://api-pacb-uat.eximpe.com/pg/orders/{order_id}/status/ \
  --header 'X-API-Version: <api-key>' \
  --header 'X-Client-ID: <api-key>' \
  --header 'X-Client-Secret: <api-key>'
{
  "success": true,
  "message": "Order status fetched successfully",
  "data": {
    "order_id": "OD9795883191",
    "status": "payment_successful",
    "status_message": "Payment captured successfully",
    "created_at": "2025-11-04T10:53:33.444171Z",
    "updated_at": "2025-11-04T11:01:17.586554Z"
  }
}

Overview

Use this endpoint to fetch only the status details for an order. This is useful for lightweight polling without fetching full order details.

Authorizations

X-Client-ID
string
header
required

Client Application ID - Your unique application identifier used to authenticate API requests. You can find your Client ID in the Developer Settings section of the merchant dashboard.

X-Client-Secret
string
header
required

Client Secret Key - Your secret key used alongside the Client ID for secure authentication. Keep this confidential and never expose it in client-side code. Available in the Developer Settings section of the merchant dashboard.

X-API-Version
string
header
required

API Version - Specifies which version of the API to use (e.g., '1.X.X' or '2.X.X'). This header allows you to control which API version your integration uses. Default version information is available in the Developer Settings.

Path Parameters

order_id
string
required

Unique identifier of the order

Response

Order status retrieved successfully

success
boolean
required
message
string
required
data
object
required