Skip to main content
Notifications are retried over a 24-hour window with progressively longer intervals. Respond with HTTP 200 to acknowledge receipt. If no successful acknowledgement is received by the end of the 24-hour window, notifications stop. You can always query the final result directly via the transaction history API.
POST {callbackUrl}
After a remittance is submitted via Confirm Transfer, Gcashier Pay sends this webhook to the callbackUrl you provided once the transaction is fully processed.

Webhook Payload

quoteId
string
required
The quote ID associated with this remittance.
payeeId
string
required
The payee identifier passed when the remittance was submitted.
countryCode
string
required
Destination country code (ISO 3166-1 alpha-2).
arriveCurrency
string
required
Currency the recipient receives (3-letter ISO 4217 code).
debitCurrency
string
required
Currency debited from your account (3-letter ISO 4217 code).
payType
string
required
Payment network used. One of local or swift.
accountType
string
required
Payee account type. Currently only 1 (bank account) is supported.
arriveAmount
string
required
Amount the recipient receives.
debitAmount
string
required
Amount debited from your balance.
rate
string
required
Exchange rate applied to this remittance.
status
string
required
Final transaction status. SUCC for success; FAIL for failure.
code
string
Transaction result code.
message
string
Human-readable description of the transaction result.
bizFlow
string
required
Gcashier Pay’s unique internal reference number for this remittance. Retain this for reconciliation.
merOrderNo
string
required
Your merchant order number for this remittance.
{
  "quoteId": "1343536422882177024",
  "payeeId": "P100023456",
  "countryCode": "US",
  "arriveCurrency": "USD",
  "debitCurrency": "CNY",
  "payType": "swift",
  "accountType": "1",
  "arriveAmount": "100",
  "debitAmount": "712.50",
  "rate": "7.1250",
  "status": "SUCC",
  "code": "S00000",
  "message": "Success",
  "bizFlow": "21875022415083500099",
  "merOrderNo": "335621309488900"
}