Bank transfers are one of the most common payment methods (along with credit cards). What is more, customers in some countries highly prefer this way of paying for goods purchased online – whole payment systems or mechanisms based on bank transfers emerge from such local trends.
Initiate PayLane Rest Client
Before using the API and calling any methods regarding bank transfers, remember to ensure that the PayLane Rest Client was initiated. Remember to provide the correct user name and password.
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"); |