Payment
[tc_payment]
$mollie = new Mollie_API_Client;
$mollie->setApiKey('test_e6jhmqWndfDCFhhrMMHf3bEFQd52sr');
$payment = $mollie->payments->create(array(
'amount' => 10.00,
'description' => 'My first payment',
'redirectUrl' => 'https://webshop.example.org/order/12345/',
));