If you're using , you can create a payment method for your app or website in four easy steps:
Step 1: Build the Bank Transfer object
Build a Bank Transfer source request and details object
Bank Transfer source request object
The Bank Transfer source request object requires the following fields.
Field
Value
type
bankTransfer
sessionId
The payment session identifier.
owner
bankTransfer
Bank Transfer source details object
The Bank Transfer source details object requires the following fields.
{
"returnUrl": "https://example.com"
}
Field
Required/Optional
Description
returnUrl
Required
If you choose to use the full redirect flow, this is where you will redirect your Customer to after authorizing or canceling within the Bank Transfer experience.
Step 2: Create the Bank Transfer source using DigitalRiver.js
Use the DigitalRiver.js library to create and mount elements to the HTML container.
var data = {
"type": "bankTransfer",
"sessionId": "3c9473b0-630d-4f20-af61-63d3aa8acb35",
"owner": {
firstName: "John",
lastName: "Doe",
email: "test@digitalriver.com",
address: {
line1: "1234 Fake Street",
line2: "Yaum-dong",
city: "Ulsan-si",
state: "Kyongsangnamdo",
postalCode: "100-011",
country: "KR"
}
},
"bankTransfer": {
"returnUrl": "https://yourReturnUrl.com"
}
}
digitalriver.createSource(data).then(function(result) {
if (result.error) {
//handle errors
} else {
var source = result.source;
//send source to back end
sendToBackend(source);
}
});
When you create a Bank Transfer source, the customer must authorize the charge through their payment provider. You can accomplish this by redirecting the customer to their payment provider.
Redirecting the customer for Bank Transfer authorization
Use the redirectUrl parameter in your createSource response to redirect your customer to the payment provider for authorization.
The payment provider will present the customer with the transaction details where they can authorize, or cancel the transaction. A successful authorization redirects the customer to the Bank Transfer Return URL parameter you specified when you created the source.
Once authorized, the source state will change to chargeable.