The Payment Company Logo

Payout

Payout Status

The Wallet Transaction Status API retrieves the status of a specific wallet transaction by `transaction_id` or `order_id`. This endpoint returns real-time transaction information, including status, amount, currency, and customer details.

SectionPayout
Topics04
Pathpayout / 04-statusApi

API Endpoint

Live APIProduction environment
GEThttps://api.thepayment.company/api/v1/live/payout/{id}/status
Test APISandbox environment
GEThttps://api.thepayment.company/api/v1/test/payout/{id}/status

Examples:

  • https://api.thepayment.company/api/v1/live/payout/TPC01862809/status (lookup with transaction_id)
  • https://api.thepayment.company/api/v1/live/payout/order67890/status (lookup with order_id)

Query Parameters

ParameterTypeRequiredDescription
idStringYesThe transaction_id or order_id used to identify the transaction.

Headers

Header NameDescription
Content-TypeDefines the content type. Always use application/json.
AuthorizationBearer token used for authentication. Pass your Secret Key here.

Sample Responses

{
"status": "SUCCESS",
"message": "Transaction processed successfully!",
"data": {
  "amount": "500",
  "currency": "USD",
  "order_id": "ORD-123456",
  "transaction_id": "TXN-654321",
  "customer": {
    "first_name": "Alice",
    "last_name": "Smith",
    "email": "alice@example.com"
  }
}
}

On this page