> ## Documentation Index
> Fetch the complete documentation index at: https://epayclub.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Verify Order

> Retrieve the customer order details.

<ParamField body="reference" type="string" required>
  A unique identifier to track the payment.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "orderReference": "805551685",
      "paymentReference": "EPCLB-3134A6BDF47211EF93AB06BA2661E92B",
      "productName": "Collection",
      "totalAmountCharged": 106,
      "statusId": 4,
      "status": "Failed",
      "paymentMethod": "Card Payment",
      "paymentResponseCode": "12",
      "paymentResponseMessage": "Transaction failed: Card transaction blocked due to change in the credit card details from the registered one",
      "narration": "Pay",
      "remarks": "Order initiated and created successfully",
      "currencyId": 6,
      "paymentLinkId": null,
      "paymentLinkReference": null,
      "recurringPaymentId": null,
      "recurringPaymentReference": null,
      "currencyName": "USD",
      "fee": 6,
      "feeRate": 6,
      "subsidiaryFee": 0,
      "customerFee": 6,
      "dateCreated": "2025-02-26T18:47:56",
      "dateUpdated": "2025-02-26T19:05:35.717496",
      "datePaymentConfirmed": null,
      "orderPayments": [
        {
          "orderId": 29,
          "orderPaymentReference": "PGW-PAYREF-3B315861F627474FA83852DBDD6CE71A",
          "paymentOptionId": 2,
          "paymentOption": "Card Payment",
          "statusId": 4,
          "status": "Failed",
          "responseCode": "12",
          "responseMessage": "Transaction failed: Card transaction blocked due to change in the credit card details from the registered one",
          "orderPaymentInstrument": null,
          "remarks": "Order payment initiated",
          "dateCreated": "2025-02-26T19:05:21.723112",
          "dateUpdated": "2025-02-26T19:05:35.717595"
        }
      ],
      "customer": {
        "customerId": null,
        "firstName": null,
        "lastName": null,
        "emailAddress": null,
        "countryShortName": null,
        "customerGroup": null,
        "countryId": 0,
        "globalStatusId": 0,
        "globalStatus": null,
        "mobileNumber": null,
        "isBlacklisted": false,
        "reasonBlacklisted": null,
        "dateCreated": "0001-01-01T00:00:00",
        "dateUpdated": null
      },
      "cardDetails": [
        {
          "orderPaymentId": 19,
          "status": true,
          "country": null,
          "cardToken": null,
          "cardExpiryMonth": null,
          "cardExpiryYear": null,
          "cardType": null,
          "cardIssuer": null,
          "cardFirstSixDigits": null,
          "cardLastFourDigits": null,
          "dateCreated": "2025-02-26T19:05:35.729312",
          "appEnvironmentId": 1
        }
      ],
      "paymentLink": null
    },
    "status": "success",
    "statusCode": "00",
    "message": "Order details fetched successfully"
  }
  ```

  ```json 400 theme={null}
  {
    "status": "failed",
    "status_code": "13",
    "message": "Order not found at the moment"
  }
  ```
</ResponseExample>
