SOFORT Banking

SOFORT Banking is an international direct payment system available in a number of European countries: Germany, Austria, Switzerland, Netherlands, UK, Belgium, France, Italy, Poland and Spain.

Start the Rest Client

Before calling any API methods, please make sure that you have properly initiated the PayLane Rest Client as follows:

1
2
include_once ('PayLaneRestClient.php');
$client = new PayLaneRestClient('your_login', 'your_password');
1
2
require 'paylane_client'
client = PayLane::Client.new('your_login', 'your_password')
1
2
from client import PayLaneRestClient
client = PayLaneRestClient("your_login", "your_password")
1
PayLaneApi api = PayLaneClientFactory.createClassicClient(context, "your_login", "your_password");