Skip to main content

Payouts to Hong Kong

Payout parameters (HKD)

NameMandatoryTypeDescription
payment_method+objectPayout data
 type+stringValue: bank_account
 bank_account+objectBank account
  system_type+stringValue: global
  global+objectBank account details
   bank_account_number+stringBank account number for the payout
   description+stringPurpose of remittance for the payout. This description should match the classification given in How to specify the remittance purpose
participant_details+objectInformation on the payout participants
 recipient+objectRecipient details
  bank_name+stringImportant: the bank name must be chosen from the List of supported banks, otherwise the payout will not be processed
  currency+stringRecipient's currency in ISO 4217 format. Case insensitive
  first_name+stringRecipient's first name. Important: if the name is passed incorrectly, the recipient bank may not accept the payout
  last_name+stringRecipient's last name. Important: if the name is passed incorrectly, the recipient bank may not accept the payout
  country_iso3+stringRecipient's country code (ISO-3166-1 alpha-3)
  address_line+stringRecipient's address
  msisdn-stringRecipient's mobile wallet address
  email-stringRecipient's email
 sender+objectSender details
  company_name+stringSender company name. Limited to 100 characters, cannot contain digits only
  registration_number+stringSender company registration number
  country_iso3+stringSender’s country code (ISO-3166-1 alpha-3)
  code+stringSender company registration number
amount_details+objectPayout amount details
 amount+intPayout amount in decimal format. The value must be greater than zero. If you are sending 100 USD, write 10000
 currency+stringISO 4217 currency code. Case insensitive

Example

curl -X POST \
https://demo.smart-glocal.com/api/v1/session/start/payout \
-H 'Content-Type: application/json' \
-H 'X-PARTNER-PROJECT: your_project_name' \
-H 'X-PARTNER-SIGN: signature' \
-d'{
"session_id": "ps_1053680",
"payment_method": {
"type": "bank_account",
"bank_account": {
"system_type": "global",
"global": {
"bank_account_number": "NUMBER_VALUE",
"description": "purpose of remittance"
}
}
},
"participant_details": {
"recipient": {
"bank_name": "Bank name",
"currency": "hkd",
"country_iso3": "HKG",
"address_line": "Wall street",
"first_name": "John",
"last_name": "Johnson"
},
"sender": {
"company_name": "Company name",
"registration_number": "1234567890",
"country_iso3": "USA",
"code": "1234567890"
}
},
"amount_details": {
"amount": 1000,
"currency": "usd"
}
}'

Payout parameters (CNY)

NameMandatoryTypeDescription
payment_method+objectPayout data
 type+stringValue: bank_account
 bank_account+objectBank account
  system_type+stringValue: global
  global+objectBank account details
   description+stringPurpose of remittance for the payout. This description should match the classification given in How to specify the remittance purpose
   bank_account_number+stringBank account number for the payout
participant_details+objectInformation on the payout participants
 recipient+objectRecipient details
  bank_name+stringImportant: the bank name must be chosen from the List of supported banks, otherwise the payout will fail
  currency+stringRecipient's currency in ISO 4217 format. Case insensitive
  first_name+stringRecipient's first name. Important: if the name is passed incorrectly, the recipient bank may not accept the payout
  last_name+stringRecipient's last name. Important: if the name is passed incorrectly, the recipient bank may not accept the payout
  address_line+stringRecipient's address
  msisdn-stringRecipient's mobile wallet address
  email-stringRecipient's email
 sender+objectSender details
  company_name+stringSender company name. Limited to 100 characters, cannot contain digits only
  registration_number+stringSender company registration number
  country_iso3+stringSender’s country code (ISO-3166-1 alpha-3)
  code+stringSender company registration number
amount_details+objectPayout amount details
 amount+intPayout amount in decimal format. The value must be greater than zero. If you are sending 100 USD, write 10000
 currency+stringISO 4217 currency code. Case insensitive

Example

curl -X POST \
https://demo.smart-glocal.com/api/v1/session/start/payout \
-H 'Content-Type: application/json' \
-H 'X-PARTNER-PROJECT: your_project_name' \
-H 'X-PARTNER-SIGN: signature' \
-d'{
"session_id": "ps_1053680",
"payment_method": {
"type": "bank_account",
"bank_account": {
"system_type": "global",
"global": {
"bank_account_number": "NUMBER_VALUE",
"description": "purpose of remittance"
}
}
},
"participant_details": {
"recipient": {
"bank_name": "Bank name",
"currency": "cny",
"address_line": "Wall street",
"first_name": "John",
"last_name": "Johnson"
},
"sender": {
"company_name": "Company name",
"registration_number": "1234567890",
"country_iso3": "USA",
"code": "1234567890"
}
},
"amount_details": {
"amount": 1000,
"currency": "usd"
}
}'

Payout parameters (USD)

NameTypeMandatoryDescription
payment_methodPaymentMethod+Payout data
 typestring+Value: bank_account
 bank_accountBankAccount+Bank account
  system_typestring+Value: global
  globalBankAccountGlobal+Bank account details
   bank_account_numberstring+Bank account number for the payout
   swift_bic_codestring-Recipient's bank’s SWIFT or BIC code
   descriptionstring+Purpose of remittance for the payout. This description should match the classification given in How to specify the remittance purpose
participant_detailsParticipantDetails+Information on the payout participants
 recipientParticipant+Recipient details
  bank_namestring+Important: the bank name must be chosen from the List of supported banks, otherwise the payout will fail
  currencystring+Recipient's currency in ISO 4217 format. Case insensitive
  first_namestring+Recipient's first name. Important: if the name is passed incorrectly, the recipient bank may not accept the payout
  last_namestring+Recipient's last name. Important: if the name is passed incorrectly, the recipient bank may not accept the payout
 senderParticipant+Sender details
  address_linestring+Sender's address
  company_namestring+Sender company name. Limited to 100 characters, cannot contain digits only
  registration_numberstring+Sender company registration number
  country_iso3string+Sender’s country code (ISO-3166-1 alpha-3)
  codestring+Sender company registration number
amount_detailsAmountDetails+Payout amount details
 amountint+Payout amount in decimal format. The value must be greater than zero. If you are sending 100 USD, write 10000
 currencystring+ISO 4217 currency code. Case insensitive

Example

curl -X POST \
https://demo.smart-glocal.com/api/v1/session/start/payout \
-H 'Content-Type: application/json' \
-H 'X-PARTNER-PROJECT: your_project_name' \
-H 'X-PARTNER-SIGN: signature' \
-d'{
"session_id": "ps_1053680",
"payment_method": {
"type": "bank_account",
"bank_account": {
"system_type": "global",
"global": {
"bank_account_number": "NUMBER_VALUE",
"swift_bic_code": "AXISINBB250",
"description": "purpose of remittance"
}
}
},
"participant_details": {
"recipient": {
"bank_name": "Bank name",
"currency": "usd",
"first_name": "John",
"last_name": "Johnson"
},
"sender": {
"company_name": "Company name",
"registration_number": "1234567890",
"country_iso3": "USA",
"address_line": "Wall street",
"code": "1234567890"
}
},
"amount_details": {
"amount": 1000,
"currency": "usd"
}
}'

List of supported banks

CountryCurrencyBank
Hong KongHKDABN AMRO BANK N.V.
Hong KongHKDAgricultural Bank of China Limited
Hong KongCNYAgricultural Bank of China Limited
Hong KongHKDAirstar Bank Limited
Hong KongCNYAirstar Bank Limited
Hong KongUSDAll Banks Hong Kong USD
Hong KongHKDAnt Bank (Hong Kong) Limited
Hong KongHKDAustralia and New Zealand Banking Corporation Limited
Hong KongCNYAustralia and New Zealand Banking Corporation Limited
Hong KongHKDBanco Bilbao Vizcaya Argentaria S.A., Hong Kong Branch
Hong KongHKDBANCO SANTANDER S.A.
Hong KongHKDBANGKOK BANK PUBLIC COMPANY LIMITED
Hong KongHKDBANK J. SAFRA SARASIN LTD, HONG KONG BRANCH
Hong KongHKDBANK JULIUS BAER AND CO LTD HONG KONG
Hong KongHKDBank of America N.A.
Hong KongCNYBank of America N.A.
Hong KongHKDBank of China ( Hong Kong ) Limited
Hong KongCNYBank of China ( Hong Kong ) Limited
Hong KongHKDBank of Communications (Hong Kong) Ltd.
Hong KongCNYBank of Communications (Hong Kong) Ltd.
Hong KongHKDBank of Communications Co., Ltd. Hong Kong Branch
Hong KongCNYBank of Communications Co., Ltd. Hong Kong Branch
Hong KongHKDBANK OF INDIA
Hong KongHKDBANK OF MONTREAL
Hong KongHKDBank of Singapore Limited
Hong KongHKDBANK OF TAIWAN
Hong KongCNYBANK OF TAIWAN
Hong KongHKDBank SinoPac (Hong Kong Branch)
Hong KongCNYBank SinoPac (Hong Kong Branch)
Hong KongHKDBarclays Bank PLC
Hong KongHKDBDO UNIBANK, INC.
Hong KongHKDBNP PARIBAS HONG KONG BRANCH
Hong KongCNYBNP PARIBAS HONG KONG BRANCH
Hong KongHKDBNP PARIBAS SECURITIES SERVICES
Hong KongHKDCA Indosuez (Switzerland) SA
Hong KongHKDCANADIAN IMPERIAL BANK OF COMMERCE
Hong KongHKDCANARA BANK HONG KONG
Hong KongHKDCATHAY BANK
Hong KongHKDCathay United Bank Company, Limited, Hong Kong Branch
Hong KongHKDCHANG HWA COMMERCIAL BANK LIMITED
Hong KongHKDCHINA CITIC BANK INTERNATIONAL LIMITED
Hong KongCNYCHINA CITIC BANK INTERNATIONAL LIMITED
Hong KongHKDChina Construction Bank (Asia) Corporation Limited
Hong KongCNYChina Construction Bank (Asia) Corporation Limited
Hong KongHKDChina Construction Bank Corporation, Hong Kong Branch
Hong KongCNYChina Construction Bank Corporation, Hong Kong Branch
Hong KongHKDChina Development Bank Hong Kong Branch
Hong KongHKDChina Everbright Bank
Hong KongCNYChina Everbright Bank
Hong KongHKDChina Merchants Bank Co. Ltd. Hong Kong Branch
Hong KongCNYChina Merchants Bank Co. Ltd. Hong Kong Branch
Hong KongHKDChina Minsheng Banking Corp., Ltd
Hong KongCNYChina Minsheng Banking Corp., Ltd
Hong KongHKDCHINA ZHESHANG BANK CO., LTD.
Hong KongCNYCHINA ZHESHANG BANK CO., LTD.
Hong KongHKDChiyu Banking Corporation Limited
Hong KongCNYChiyu Banking Corporation Limited
Hong KongHKDChong Hing Bank Limited
Hong KongCNYChong Hing Bank Limited
Hong KongHKDCIMB BANK BERHAD
Hong KongHKDCitibank (Hong Kong) Limited
Hong KongCNYCitibank (Hong Kong) Limited
Hong KongHKDCitibank N.A.
Hong KongCNYCitibank N.A.
Hong KongHKDCMB Wing Lung Bank Limited
Hong KongCNYCMB Wing Lung Bank Limited
Hong KongHKDCommerzbank AG, Hong Kong Branch
Hong KongCNYCommerzbank AG, Hong Kong Branch
Hong KongHKDCommonwealth Bank of Australia
Hong KongHKDCOOPERATIEVE RABOBANK U.A.
Hong KongHKDCredit Agricole Corporate and Investment Bank
Hong KongHKDCredit Industriel et Commercial, Hong Kong Branch
Hong KongHKDCredit Suisse AG Hong Kong Branch
Hong KongHKDCTBC BANK CO., LTD
Hong KongCNYCTBC BANK CO., LTD
Hong KongHKDDah Sing Bank, Limited
Hong KongCNYDah Sing Bank, Limited
Hong KongHKDDBS Bank (Hong Kong) Limited
Hong KongCNYDBS Bank (Hong Kong) Limited
Hong KongHKDDBS Bank Ltd, HK Branch
Hong KongCNYDBS Bank Ltd, HK Branch
Hong KongHKDDeutsche Bank AG Hong Kong Branch
Hong KongHKDDZ BANK AG DEUTSCHE ZENTRAL- GENOSSENSCHAFTSBANK, FRANKFURT AM MAIN,
HONG KONG BRANCH
Hong KongHKDE.Sun Commercial Bank, Ltd.
Hong KongCNYE.Sun Commercial Bank, Ltd.
Hong KongHKDEAST WEST BANK
Hong KongHKDEFG Bank AG Hong Kong Branch
Hong KongHKDErste Group Bank AG
Hong KongHKDFar Eastern International Bank Co Ltd.
Hong KongHKDFirst Abu Dhabi Bank PJSC
Hong KongHKDFIRST COMMERCIAL BANK LTD HONG KONG BRANCH
Hong KongHKDFubon Bank (Hong Kong) Limited
Hong KongCNYFubon Bank (Hong Kong) Limited
Hong KongHKDFusion Bank Limited
Hong KongCNYFusion Bank Limited
Hong KongHKDHang Seng Bank Ltd.
Hong KongCNYHang Seng Bank Ltd.
Hong KongHKDHDFC BANK LIMITED
Hong KongHKDHong Leong Bank Berhad Hong Kong Branch
Hong KongCNYHong Leong Bank Berhad Hong Kong Branch
Hong KongHKDHUA NAN COMMERCIAL BANK LTD. (HK BRANCH)
Hong KongHKDHua Xia Bank Co., Limited
Hong KongHKDICBC STANDARD BANK PLC
Hong KongHKDICICI BANK LIMITED
Hong KongHKDINDIAN OVERSEAS BANK
Hong KongHKDIndustrial and Commercial Bank of China (Asia)
Hong KongCNYIndustrial and Commercial Bank of China (Asia)
Hong KongHKDINDUSTRIAL AND COMMERCIAL BANK OF CHINA LIMITED
Hong KongHKDIndustrial Bank Co., Ltd., Hong Kong Branch
Hong KongCNYIndustrial Bank Co., Ltd., Hong Kong Branch
Hong KongHKDINDUSTRIAL BANK OF KOREA
Hong KongHKDING Bank N.V., Hong Kong
Hong KongHKDIntesa Sanpaolo S.p.A., Hong Kong
Hong KongHKDJPMorgan Chase Bank, N.A.
Hong KongHKDKBC Bank N.V. Hong Kong Branch
Hong KongHKDKEB HANA BANK
Hong KongHKDKookmin Bank
Hong KongHKDLAND BANK OF TAIWAN CO.,LTD.
Hong KongHKDLGT Bank AG., HK Branch
Hong KongCNYLGT Bank AG., HK Branch
Hong KongHKDLivi Bank Limited
Hong KongCNYLivi Bank Limited
Hong KongHKDMACQUARIE BANK LIMITED
Hong KongHKDMalayan Banking Berhad Hong Kong Branch
Hong KongCNYMalayan Banking Berhad Hong Kong Branch
Hong KongHKDMashreq Bank Public Shareholding Company
Hong KongCNYMashreq Bank Public Shareholding Company
Hong KongHKDMega International Commercial Bank Co Ltd
Hong KongHKDMelli Bank Plc
Hong KongHKDMITSUBISHI UFJ TRUST AND BANKING CORPORATION
Hong KongHKDMizuho Bank, Ltd.
Hong KongCNYMizuho Bank, Ltd.
Hong KongHKDMox Bank Limited
Hong KongHKDMUFG Bank, Ltd.
Hong KongCNYMUFG Bank, Ltd.
Hong KongHKDNanyang Commercial Bank
Hong KongCNYNanyang Commercial Bank
Hong KongHKDNational Australia Bank Limited
Hong KongHKDNational Bank of Pakistan
Hong KongHKDNATIXIS HONG KONG BRANCH
Hong KongHKDNatWest Markets Plc Hong Kong Branch
Hong KongHKDO-Bank Co., Ltd
Hong KongHKDOCBC Wing Hang Bank Limited
Hong KongCNYOCBC Wing Hang Bank Limited
Hong KongHKDOVERSEA - CHINESE BANKING CORPORATION LIMITED
Hong KongCNYOVERSEA - CHINESE BANKING CORPORATION LIMITED
Hong KongHKDPHILIPPINE NATIONAL BANK
Hong KongHKDPictet & Cie (Europe) S.A., Hong Kong Branch
Hong KongHKDPing An Bank Co., Ltd.
Hong KongCNYPing An Bank Co., Ltd.
Hong KongHKDPing An OneConnect Bank (Hong Kong) Limited
Hong KongHKDPT. BANK NEGARA INDONESIA (PERSERO) TBK.
Hong KongHKDPublic Bank (Hong Kong) Limited
Hong KongCNYPublic Bank (Hong Kong) Limited
Hong KongHKDPUNJAB NATIONAL BANK
Hong KongHKDRoyal Bank of Canada, Hong Kong Branch
Hong KongHKDShanghai Commercial Bank Limited
Hong KongCNYShanghai Commercial Bank Limited
Hong KongHKDShanghai Pudong Development Bank Co., Ltd.
Hong KongCNYShanghai Pudong Development Bank Co., Ltd.
Hong KongHKDShinhan Bank Hong Kong Branch
Hong KongHKDSkandinaviska Enskilda Banken AB
Hong KongHKDSOCIETE GENERALE HONGKONG BRANCH
Hong KongHKDStandard Chartered Bank (Hong Kong) Limited
Hong KongCNYStandard Chartered Bank (Hong Kong) Limited
Hong KongHKDSTATE BANK OF INDIA
Hong KongHKDState Street Bank & Trust Company, Hong Kong
Hong KongHKDSumitomo Mitsui Banking Corporation
Hong KongCNYSumitomo Mitsui Banking Corporation
Hong KongHKDSumitomo Mitsui Trust Bank, Limited, Hong Kong Branch
Hong KongHKDSVENSKA HANDELSBANKEN AB (PUBL) HONG KONG BRANCH
Hong KongHKDTAI SANG BANK LTD.
Hong KongHKDTai Yau Bank Limited
Hong KongHKDTaipei Fubon Commercial Bank
Hong KongCNYTaipei Fubon Commercial Bank
Hong KongHKDTaishin International Bank Co Ltd
Hong KongCNYTaishin International Bank Co Ltd
Hong KongHKDTaiwan Business Bank, Ltd.
Hong KongHKDTaiwan Cooperative Bank
Hong KongHKDTaiwan Shin Kong Commercial Bank Co., LTD.
Hong KongHKDThe Bank of East Asia, Limited
Hong KongCNYThe Bank of East Asia, Limited
Hong KongHKDThe Bank of New York Mellon, Hong Kong Branch
Hong KongHKDThe Bank of Nova Scotia
Hong KongHKDThe Chiba Bank Ltd
Hong KongHKDTHE CHUGOKU BANK, LTD.
Hong KongHKDThe Hachijuni Bank Ltd
Hong KongHKDThe Hongkong and Shanghai Banking Corporation Limited
Hong KongCNYThe Hongkong and Shanghai Banking Corporation Limited
Hong KongHKDThe Shanghai Commercial & Savings Bank Ltd.Hong Kong Branch.
Hong KongHKDTHE SHIGA BANK, LTD.
Hong KongHKDThe Shizuoka Bank, Ltd.
Hong KongHKDToronto Dominion Bank
Hong KongHKDUBS AG Hong Kong
Hong KongHKDUCO BANK HONG KONG
Hong KongHKDUNICREDIT BANK AG HONG KONG BRANCH
Hong KongCNYUNICREDIT BANK AG HONG KONG BRANCH
Hong KongHKDUnion Bancaire Privee, UBP SA
Hong KongHKDUNION BANK OF INDIA
Hong KongHKDUnited Overseas Bank Limited
Hong KongCNYUnited Overseas Bank Limited
Hong KongHKDWelab Bank Limited
Hong KongHKDWells Fargo Bank, N.A. Hong Kong Branch
Hong KongHKDWestpac Banking Corporation
Hong KongHKDWoori Bank Hong Kong Branch
Hong KongHKDYUANTA COMMERCIAL BANK CO.,LTD
Hong KongHKDZA Bank Limited
Hong KongCNYZA Bank Limited