API Documentation
  1. Webhook
API Documentation
  • API Documentation Change Log
  • API Reference Guide
    • Checkout Page
    • Payin - KRW (Server to Server)
    • Purpose Code
    • Payout Payload Example
    • List of Payin Methods
    • List of Bank for Payout Methods
  • API Documentation
    • Master Data
      • Get All Country & Currency Code
    • Payout Method
      • Get All Payout Method
    • Payin Method
      • Get All Payin Method
      • Get Required Fields by Payin method
    • Payin
      • Create Payin
      • Simulate Payin
      • Retrieve Payin
      • Create Virtual Account
      • Simulate Create VA
    • Payout
      • Create Payout
      • Simulate Payout
      • Retrieve Payout
      • Get All Payout
    • Checkout
      • Create Payment Request
      • Get All Checkout
      • Get Detail Checkout
      • Create Virtual Account [KRW]
      • Get VA Bank Information [KRW]
      • Create New Checkout
    • Webhook
      • Webhook PAYIN SUCCESS
        POST
      • Webhook PAYIN FAILED
        POST
      • Webhook PAYIN EXPIRED
        POST
      • Webhook PAYOUT SUCCESS
        POST
      • Webhook PAYOUT FAILED
        POST
      • Webhook PAYOUT RETURNED
        POST
      • VA Register Callback
        POST
    • Merchant
      • Get Balance Payout
    • 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. Webhook

Webhook PAYOUT RETURNED

POST
url_webhook_merchant
Each POST/PATCH Request requires a Signature in the header, you can follow the following code to create the Signature:
const crypto = require('crypto'); const signature = crypto.createHmac('sha256', signatureKey) .update(JSON.stringify(data)).digest('hex');

Request

Header Params

Body Params application/json

Example
{
  "id": "1a719ef2-9f87-4825-9e78-c0b7d99cd345",
  "merchant_id": "577311c7-9788-4ec1-8501-86ae69b134e6",
  "status": "RETURNED",
  "wire_id": "w_txn_099c65b90c504f2cb285f3dc9c3ad3e1",
  "order_id": "payout_123456",
  "due_date": "2025-09-19T00:00:00.000Z",
  "last_action": null,
  "original_amount": "1",
  "payee_name": "Ek",
  "currency": "AUD",
  "beneficiary": "Ek",
  "beneficiary_bank": "au_bank_payid",
  "beneficiary_account_number": null,
  "beneficiary_account_iban": null,
  "wire_origin": null,
  "conversion": null,
  "approval": "APPROVED",
  "created_at": "2025-09-18T09:31:00.000Z",
  "updated_at": "2025-09-18T09:31:52.000Z",
  "approved_at": null,
  "denied_at": null,
  "pending_at": null,
  "type": "PAYOUT"
}

Request Code 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 POST 'https://api.paycombat.comurl_webhook_merchant' \
--header 'X-Signature;' \
--header 'Content-Type: application/json' \
--data-raw '{
  "id": "1a719ef2-9f87-4825-9e78-c0b7d99cd345",
  "merchant_id": "577311c7-9788-4ec1-8501-86ae69b134e6",
  "status": "RETURNED",
  "wire_id": "w_txn_099c65b90c504f2cb285f3dc9c3ad3e1",
  "order_id": "payout_123456",
  "due_date": "2025-09-19T00:00:00.000Z",
  "last_action": null,
  "original_amount": "1",
  "payee_name": "Ek",
  "currency": "AUD",
  "beneficiary": "Ek",
  "beneficiary_bank": "au_bank_payid",
  "beneficiary_account_number": null,
  "beneficiary_account_iban": null,
  "wire_origin": null,
  "conversion": null,
  "approval": "APPROVED",
  "created_at": "2025-09-18T09:31:00.000Z",
  "updated_at": "2025-09-18T09:31:52.000Z",
  "approved_at": null,
  "denied_at": null,
  "pending_at": null,
  "type": "PAYOUT"
}'

Responses

🟢200Success
application/json
Body

Example
{}
🟠400Bad Request
Modified at 2025-09-18 09:47:24
Previous
Webhook PAYOUT FAILED
Next
VA Register Callback