API Documentation
  1. Payout
API Documentation
  • API Reference Guide
    • Checkout Page
    • Payin - KRW (Server to Server)
    • Purpose Code
    • Payout Payload Example
    • List of Payin Methods
  • API Documentation
    • Master Data
      • Get All Country & Currency Code
    • Payout Method
      • Get Required Fields by Payout method
      • Get All Payout Method
    • Payin Method
      • Get All Payin Method
      • Get Required Fields by Payin method
    • Payout Beneficiary
      • Create Payout Beneficiary
      • Update Payout Beneficiary
      • Get All Payout Beneficiary
      • Get Payout Beneficiary by Id
      • Validation by Id
      • Validation by Body
    • Payin
      • Create Payin
      • Retrieve Payin
      • Retrieve Payin Memo (PDF)
      • Create Virtual Account
    • Payout
      • Create Payout
        POST
      • Simulate Payout
        PATCH
      • Retrieve Payout Memo (PDF)
        GET
      • Retrieve Payout
        GET
      • Get All Payout
        GET
    • Checkout
      • Create Payment Request
      • Get All Checkout
      • Cancel Checkout
      • Get Detail Checkout
      • Create Virtual Account [KRW]
      • Get VA Bank Information [KRW]
      • Create New Checkout
    • Transaction
      • Find Transaction by Id
      • Get All Transaction
    • Wallet
      • Create Wallet
      • Get All Wallet
      • Get by Wallet Id
    • Customer
      • Create Customer
      • Update Customer
      • Get All Customer
      • Get Detail Customer by Id
      • Check Is Customer Wallet Ready
      • Enable Customer
      • Disable Customer
      • Delete Customer
    • Webhook
      • Webhook PAYIN SUCCESS
      • Webhook PAYOUT SUCCESS
      • Webhook PAYOUT FAILED
      • VA Register Callback
    • Get List Payment Method by Currency
      GET
  • Features Documentation
    • Dashboard
    • Transaction
      • Payin
      • Payout
      • Rolling Reserve
      • Refund Request
    • Finance
      • Settlement Report APM
      • Settlement Report CARD
      • History Balance APM
      • History Balance CARD
    • Account
      • Profile Account
      • Manage Users
    • Setting
      • Integration Details
  1. Payout

Retrieve Payout

GET
/api/v1/payout-method/retrieve-payout/{id}
This API is used to retrieve details of payout transaction by using reply_code_id_pg parameter.

Request

Path Params
id
string 
required
Example:
38c3d33a-1cc2-4945-a6ec-5be4bfc2bc37
Header Params
X-token
string 
required
Example:
snd_eyJpdiI6Ik41YjZiWXFPQnR4RkxEN2xaQmgybkE9PSIsInZhbHVlIjoiMEErazkwaDlicjFFWHlzd0lkTi9VQjRJOGFOZjgrSzhVQllvamhTaUFVMVU4SVJhM1EzdzdVdlpCK2dZMXhOSyIsIm1hYyI6IjI0OWE5NzUxYjE0MDMyNTY0YWVmOTlkYzdmOGIyOGVkMzg1YWYzNDk2YTdjYjMwODRiY2NlM2UxMjM5NTJmZmUiLCJ0YWciOiIifQ==

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.paycombat.com/api/v1/payout-method/retrieve-payout/38c3d33a-1cc2-4945-a6ec-5be4bfc2bc37' \
--header 'X-token: snd_eyJpdiI6Ik41YjZiWXFPQnR4RkxEN2xaQmgybkE9PSIsInZhbHVlIjoiMEErazkwaDlicjFFWHlzd0lkTi9VQjRJOGFOZjgrSzhVQllvamhTaUFVMVU4SVJhM1EzdzdVdlpCK2dZMXhOSyIsIm1hYyI6IjI0OWE5NzUxYjE0MDMyNTY0YWVmOTlkYzdmOGIyOGVkMzg1YWYzNDk2YTdjYjMwODRiY2NlM2UxMjM5NTJmZmUiLCJ0YWciOiIifQ=='

Responses

🟢200Success
application/json
Body
status
boolean 
required
message
string 
required
data
object 
required
id
string 
required
merchant_id
string 
required
reply_code_id_pg
string 
required
status
string 
required
wire_id
string 
required
order_id
null 
required
due_date
string 
required
last_action
null 
required
wire_amount
integer 
required
fee_taken
number 
required
fee_expected
integer 
required
payee_name
string 
required
currency
string 
required
beneficiary
string 
required
beneficiary_bank
string 
required
beneficiary_account_number
null 
required
beneficiary_account_iban
null 
required
wire_origin
null 
required
conversion
null 
required
approval
string 
required
created_at
string 
required
updated_at
string 
required
approved_at
null 
required
denied_at
null 
required
pending_at
null 
required
Examples
{
    "status": true,
    "message": "OK",
    "data": {
        "id": "edc1f92c-12c2-4b80-bf32-c24dcc0dfa1e",
        "merchant_id": "2a776a4a-ad24-4ccb-80ce-fd58bd0e5880",
        "reply_code_id_pg": "payout_9d84899053d44777b0d53345353ffa98",
        "status": "COMPLETED",
        "wire_id": "w_txn_95d18bef65d74d179e78a2902c8d6723",
        "order_id": null,
        "due_date": "2025-02-25T00:00:00.000Z",
        "last_action": null,
        "wire_amount": 97,
        "fee_taken": 1.94,
        "fee_expected": 3,
        "payee_name": "Fajar test",
        "currency": "AUD",
        "beneficiary": "Fajar test",
        "beneficiary_bank": "au_bank_acct",
        "beneficiary_account_number": null,
        "beneficiary_account_iban": null,
        "wire_origin": null,
        "conversion": null,
        "approval": "APPROVED",
        "created_at": "2025-02-24T01:56:32.000Z",
        "updated_at": "2025-02-24T02:00:29.000Z",
        "approved_at": null,
        "denied_at": null,
        "pending_at": null
    }
}
🟠400Bad Request
Modified at 2025-05-06 02:34:57
Previous
Retrieve Payout Memo (PDF)
Next
Get All Payout