TarsPay_EN
  1. withdraw
TarsPay_EN
Philippines🇵🇭
  • Indonesia🇮🇩
  • India🇮🇳
  • Thailand🇹🇭
  • Philippines🇵🇭
  • Malaysia🇲🇾
  • Vietnam🇻🇳
  • Egypt🇪🇬
  • Bangladesh🇧🇩
  • Kenya🇰🇪
  • Pakistan🇵🇰
  • Brazil🇧🇷
  • Mexico🇲🇽
  • Ban_TEST
  • Access Guide
  • Attachment Code Table
  • Core Business Process Description
  • deposit
    • Create a deposit order
      POST
    • Query deposit order status
      POST
  • withdraw
    • Create withdraw order
      POST
    • Query withdraw order
      POST
  • account
    • Query balance
      POST
  • CallBack
    • Callback notification interface (customized by the merchant)
      POST
  1. withdraw

Create withdraw order

POST
/api/payOut/unifiedOrder

withdraw code#

withdraw bank code#

bank codebank name
AUBKPAsia United Bank Corporation
MRTCPBankko Mabuhay, Inc
PABIPBank of Commerce
CTCBPCTBC Bank (Philippines) Corp
CHBKPChina Bank
CHSVPChina Bank Savings
CITIPCitibank, N.A. - Manila Branch
DBPHPDevelopment Bank of the Philippines
DCDEPDumaguete City Development Bank, Inc.
DUMTPDungganon Bank, Inc.
EWBCPEast West Banking Corporation
EQSNPEquicom Savings Bank, Inc.
GCASHGCach
HBPHPHSBC
HBSBPHSBC Savings Bank,Inc.
KOEXKKorea Exchange Bank
TLBPPLandbank/Of Bank
MAARPMalayan Bank Savings & Mortgaga Bank,Inc.
MBBEPMaybank Philippines, Inc.
MBTCPMetrobank
PNBMPPNB
PPBUPPhilippines Business Bank, Inc.
PHVBPPhilippines Veterans Bank
ROBPPRobinsons Bank Corporation
SETCPSecurity Bank Corporation
STLAPSterling Bank of Asia, Inc.
UCPBPUCPB Savings Bank
WEDVPWealth Development Bank Corp.
TYBKPYuanta Savinas Bank Philippines. Inc.
UBPUNION BANK OF THE PHILIPPINES
EAWRPKomo / East West Rural Bank, Inc.
QCRIPQUEZON CAPITAL RURAL BANK
RCSAPRCBC SAVINGS BANK
CRDCARD Bank Inc
ACI_RCBCRizal Commercial Banking Corp.
GW_UCPBUnited Coconut Planters Bank
GW_SSBSun Savings Bank, Inc.
GW_PSBPhilippine Savings Bank
GW_PRBProducers Bank
GW_PBCPhilippine Bank of Communications
GW_IEMInfoserve / Nationlink
GW_IBIISLA Bank (A Thrift Bank), Inc.
GW_ERBEntrepreneur Rural Bank, Inc./ENTRP
GW_BPIBPI / BPI Family Savings Bank
BDOBanco de Oro (BDO)
CTSCity Savings Bank
CSBCity State Savings Bank
EBIEnterprise Bank
OFBOverseas Filipino Bank, A Savings Bank of Landbank
PTCPhiltrust Bank
PRSPR Savings Bank
TRBTiaong Rural Bank
BPIBPI / VYBE by BPI
APYAlipay / Lazada Wallet
ALBAllBank (A Thrift Bank), Inc.
BFSBanana Fintech / BananaPay
BCHBank of China
BGBBanKo, A Subsidiary of BPI
ONBBDO Network Bank
CMGCamalig Bank
CBICantilan Bank
MRICARD MRI
SMECARD SME Bank
CLBCebuana Lhuillier Bank / Cebuana Xpress
CPICIMB Philippines, Inc.
CISCIS Bayad Center / Bayad
DCPDCPay / COINS.PH
GOTGoTyme Bank
GBYGrabPay
IRII-Remit / iCASH
LSBLegazpi Savings Bank
LDBLuzon Development Bank
MYAMaya Bank, Inc.
PPIMaya Philippines, Inc./Maya Wallet
MCBMindanao Consolidated CoopBank
NBKNetbank
OPIOmniPay, Inc.
OWNOwn Bank
PASPacific Ace Savings Bank
PPSPalawanPay
PARPartner Rural Bank (Cotabato), Inc.
PMPPayMongo
PDXPDAX
QCBQueenbank
RABRang-Ay Bank
RBGRural Bank of Guinobatan / Asenso
SEASeabank
SPPShopeePay
SPISpeedyPay/eMango Pay
SCBStandard Chartered Bank
SPYStarpay
TCITayoCash
TWITOKTOKWALLET
TDBTonik Bank
TPITraxionPay/DigiCOOP/COOPNET
UDBUnionDigital Bank
UNOUNObank
UMSUSSC Money Services
ZTIZybi Tech Inc. / JuanCash

Limit information#

Withdraw amount rules
Withdraw channelMinimum single transactionMaximum single transaction
BANK10050,000

Request

Header Params
X-API-KEY
string 
required
The public key applied by the merchant backend
Example:
02106af2a085fbfc6d1bb49f485205fcdfcc79a4ddb1913c72a271fedd24c2d7fe
X-API-NONCE
string 
required
System timestamp accurate to milliseconds
Example:
1702279880267
X-API-SIGNATURE
string 
required
signature
Example:
304502207a4a88a5b0def29b9dbbf8563112d090c0e0b793ff6a5c57fe9d4fd1254d8ecf022100ff63c279f5926069fa1d161598e8d3249cb90e9d728e88e514352cdae6feff72
Body Params application/json
mchNo
string 
Merchant number
required
mchOrderNo
string 
Merchant order number (guaranteed to be unique)
required
wayCode
string 
Payment code
required
Reference payment bank code
currency
string 
Country code
required
Fixed PHP
amount
string 
Amount
required
notifyUrl
string 
Result notification address
required
customerName
string 
User name
required
Payee name
customerEmail
string 
User Email
required
Payee Email
customerContact
string 
User Mobile Phone
required
Payee Contact Information Format: 10-digit mobile phone number starting with 9
customerAccountNumber
string 
User Payment Account
required
Payee Bank Card Number
Example
{
    "mchNo": "string",
    "mchOrderNo": "string",
    "wayCode": "string",
    "currency": "string",
    "amount": "string",
    "notifyUrl": "string",
    "customerName": "string",
    "customerEmail": "string",
    "customerContact": "string",
    "customerAccountNumber": "string"
}

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 '/api/payOut/unifiedOrder' \
--header 'X-API-KEY: 02106af2a085fbfc6d1bb49f485205fcdfcc79a4ddb1913c72a271fedd24c2d7fe' \
--header 'X-API-NONCE: 1702279880267' \
--header 'X-API-SIGNATURE: 304502207a4a88a5b0def29b9dbbf8563112d090c0e0b793ff6a5c57fe9d4fd1254d8ecf022100ff63c279f5926069fa1d161598e8d3249cb90e9d728e88e514352cdae6feff72' \
--header 'Content-Type: application/json' \
--data-raw '{
    "mchNo": "string",
    "mchOrderNo": "string",
    "wayCode": "string",
    "currency": "string",
    "amount": "string",
    "notifyUrl": "string",
    "customerName": "string",
    "customerEmail": "string",
    "customerContact": "string",
    "customerAccountNumber": "string"
}'

Responses

🟢200成功
application/json
Body
code
integer 
required
data
object 
required
mchOrderNo
string 
Merchant order number
required
payOrderId
string 
Platform order number
required
msg
string 
required
Example
{
    "code": 0,
    "data": {
        "mchOrderNo": "M1655535407",
        "payOrderId": "P1551409540398772225"
    },
    "msg": "SUCCESS"
}
Previous
Query deposit order status
Next
Query withdraw order
Built with