Skip to main content

Payouts via online banking in Japan

To make account credits using online banking in Japan, a request to the Tranzzo API must contain the following parameters:

ParameterTypeRequiredDescription
pos_idUUID✅Merchant's identifier (POS_ID)
modeMODE✅direct
methodMETHOD✅Payment method (credit)
amountNumber✅Transaction amount. Must be a positive number
currencyCURRENCY✅Transaction currency (ISO_4217)
order_3ds_bypassString✅3-D Secure flow option
order_idString✅Unique identifier of order
descriptionString✅Payment description
paywayString✅banking
server_urlURLWebhook notification will be sent to this URL
result_urlURLCustomer will be redirected to this URL after payment.
customer_fnameString✅Sender’s first name
customer_lnameString✅Sender’s last name
customer_countryString✅Sender’s country (ISO 3166-1 (alpha-2))
customer_cityString✅Sender’s city
customer_birthdayDate✅Sender’s birthday (format: yyyy-MM-dd)
recipient_fnameString✅Recipient’s first name
recipient_lnameString✅Recipient’s last name
recipient_emailString✅Recipient’s email address
recipient_phoneString✅Recipient’s phone
properties.addressString✅Recipient’s address
properties.post_codeString✅Recipient’s postcode
properties.recipient_addressString✅Recipient’s address
properties.recipient_cityString✅Recipient’s city
properties.recipient_countryString✅Recipient’s country (ISO 3166-1 (alpha-2))
properties.recipient_postcodeString✅Recipient’s postcode
properties.account_numberString✅Recipient’s bank account number
properties.bank_nameString✅Recipient’s bank name
properties.recipient_birth_dateString✅Recipient’s date of birth (format: yyyy-MM-dd)
properties.bank_account_codeString✅Payment system of recipient’s bank (a specific value for each country)
properties.branch_codeString✅Bank branch code (a specific value for each country
properties.stateString✅Sender’s region/prefecture
properties.recipient_stateString✅Recipient’s region/prefecture

The value of the payway parameter must be banking.

Request example:

{
"pos_id": "'$POS_ID'",
"mode": "direct",
"method": "credit",
"amount": 1,
"currency": "JPY",
"payway": "banking",
"order_id": "'$ORDER_ID'",
"description": "Description",
"order_3ds_bypass": "supported",
"customer_fname": "John",
"customer_lname": "Doe",
"customer_city": "Okinawa",
"customer_country": "JP",
"customer_birthday": "1990-01-02",
"recipient_fname": "Jane",
"recipient_lname": "Roe",
"recipient_phone": "999999999",
"recipient_email": "[email protected]",
"properties": {
"account_number": "474839194",
"bank_name": "Mizuho Bank",
"bank_account_code": "JPZGN",
"branch_code": "1234567",
"recipient_address": "Okimawa str 121",
"recipient_country": "JP",
"recipient_city": "Okinawa",
"recipient_postcode": "904-0033",
"recipient_birth_date": "1990-01-07",
"address": "Okimawa str 122",
"post_code": "904-0033",
"state": "Kyushu-Okinawa",
"recipient_state": "Kyushu-Okinawa"
},
"server_url": "http://callback-stub:9000/consume",
"result_url": "http://www.google.com/",
}