iDEAL

iDEAL is a Dutch payment system used exclusively throughout the Netherlands to process payments using direct online bank transfers. Unlike many other national transfer systems, iDEAL provides a unified interface for processing payments in real time while providing a high level of security, and is very popular in the Dutch online market.

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");