Fetch a Transaction
When making a request to an API for a transaction's information, you typically need to provide a unique identifier UUID. The UUID is generated at the time of creating a transaction and is associated with the each transaction.
Endpoint
/3p/api/v1/transaction/{uuid}
Response Object
Note: Amounts and fees are expressed in cents.
{
"status": true,
"message": "",
"data": {
"uuid": "9c330a70-84de-46c3-a380-70b34799b1d3",
"payer_uuid": "7d021f9a-b5f4-4668-8d78-0f448f55f984",
"payee_uuid": "ec82930a-b59e-4ed2-83dd-0f041bfa5baa",
"transaction_status": "PAYOUT_COMPLETE",
"capture_status": "CAPTURE_COMPLETE",
"payout_status": "PAYOUT_COMPLETE",
"clawback_status": null,
"reverse_payout_status": null,
"currency": "USD",
"amount": 57163,
"transaction_fee": 0,
"client_reference_id": "stageN5@123",
"payout_delay_days": 0,
"company_name": "a-z, A-Z, 12-'3.",
"description": null,
"addenda": null,
"type": "api",
"failure_code": null,
"failure_reason": null,
"cancel_reason": null,
"payer_bank_account": {
"uuid": "9c3306a6-743f-4f8f-9a33-dcd081a06204",
"aggregator_type": "bank_link"
},
"payee_bank_account": {
"uuid": "9c33090b-c0fb-42ce-9ad8-921665d15a90",
"aggregator_type": "bank_link"
},
"created_at": "2024-06-03 15:58:44",
"updated_at": "2024-06-04 18:30:30"
},
"errors": null,
"error_code": null
}
Errors & Warnings
Code | Message |
---|---|
401 | |
403 | |
422 |
Updated 1 day ago