API Documentation
  1. Webhook
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
      • Simulate Payout
      • Retrieve Payout Memo (PDF)
      • Retrieve Payout
      • Get All Payout
    • 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
        POST
      • Webhook PAYOUT SUCCESS
        POST
      • Webhook PAYOUT FAILED
        POST
      • VA Register Callback
        POST
    • 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 FAILED

Developing
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
X-Signature
string 
optional
Body Params application/json
order_id
null 
required
due_date
integer 
required
last_action
null 
required
wire_amount
integer 
required
original_amount
integer 
required
fee_taken
integer 
required
fee_expected
integer 
required
beneficiary_account_number
null 
required
beneficiary_account_iban
null 
required
wire_origin
null 
required
conversion
null 
required
created_at
integer 
required
updated_at
integer 
required
approved_at
null 
required
denied_at
null 
required
pending_at
null 
required
Example
{
  "id": 'a6a274db-b67d-49d3-814c-b262825403f3',
  "merchant_id": '42e90341-cc68-4fbc-9baf-c3714b6fce0d',
  "status": 'FAILED',
  "wire_id": 'w_txn_23f256114068459f91123eaf0b6546c5',
  "order_id": null,
  "due_date": 2025-03-20T00:00:00.000Z,
  "last_action": null,
  "wire_amount": 97,
  "original_amount": 100,
  "fee_taken": 3,
  "fee_expected": 3,
  "payee_name": 'Rafly',
  "currency": 'AUD',
  "beneficiary": 'Rafly',
  "beneficiary_bank": 'au_bank_acct',
  "beneficiary_account_number": null,
  "beneficiary_account_iban": null,
  "wire_origin": null,
  "conversion": null,
  "approval": 'FAILED',
  "created_at": 2025-03-19T08:51:05.000Z,
  "updated_at": 2025-03-19T08:51:05.000Z,
  "approved_at": null,
  "denied_at": null,
  "pending_at": null,
  "type": 'PAYOUT'
}

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 POST 'https://api.paycombat.comurl_webhook_merchant' \
--header 'X-Signature;' \
--header 'Content-Type: application/json' \
--data-raw '{
  "id": '\''a6a274db-b67d-49d3-814c-b262825403f3'\'',
  "merchant_id": '\''42e90341-cc68-4fbc-9baf-c3714b6fce0d'\'',
  "status": '\''FAILED'\'',
  "wire_id": '\''w_txn_23f256114068459f91123eaf0b6546c5'\'',
  "order_id": null,
  "due_date": 2025-03-20T00:00:00.000Z,
  "last_action": null,
  "wire_amount": 97,
  "original_amount": 100,
  "fee_taken": 3,
  "fee_expected": 3,
  "payee_name": '\''Rafly'\'',
  "currency": '\''AUD'\'',
  "beneficiary": '\''Rafly'\'',
  "beneficiary_bank": '\''au_bank_acct'\'',
  "beneficiary_account_number": null,
  "beneficiary_account_iban": null,
  "wire_origin": null,
  "conversion": null,
  "approval": '\''FAILED'\'',
  "created_at": 2025-03-19T08:51:05.000Z,
  "updated_at": 2025-03-19T08:51:05.000Z,
  "approved_at": null,
  "denied_at": null,
  "pending_at": null,
  "type": '\''PAYOUT'\''
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
🟠400Bad Request
Modified at 2025-05-19 08:04:54
Previous
Webhook PAYOUT SUCCESS
Next
VA Register Callback