List view
Getting Started
Getting Started
Authentication Guide
Authentication Guide
PIX Brazil
PIX Brazil
PagoMovil Venezuela
PagoMovil Venezuela
SPEI Mexico
SPEI Mexico
PSE Colombia
PSE Colombia
Real-Time Bank Transfers Paraguay
Real-Time Bank Transfers Paraguay
VISA & MasterCard
VISA & MasterCard
Queries on Transactions
Get Status Payin by ID
5. payout_status_by_id
Description:
Retrieves the status of a payout using a unique Transaction ID. This endpoint is ideal for tracking the progress and resolution of payouts, providing timely updates to merchants.
URL:
Request Parameters:
Parameter | Type | Description |
service_code | String | Service code, e.g., BT_ARS. |
transaction_id | String | Unique Transaction ID. |
Expected Response:
Field | Type | Description |
status | String | Status of the request (success, error). |
data.transaction_id | String | Unique transaction identifier. |
data.status | String | Current transaction status, e.g., COMPLETED. |
data.amount | Float | Amount associated with the transaction. |
Example Request:
{ "service_code": "BT_ARS", "transaction_id": "63ad7848-3672-422a-97df-2cb8ba25e11b" }
Example Response:
{ "status": "success", "data": { "transaction_id": "63ad7848-3672-422a-97df-2cb8ba25e11b", "status": "COMPLETED", "amount": 32.63 } }