Want to allow your customers to pay in the most convenient way, then Twikey is right what you need.
Recurring or occasional payments via (Recurring) Credit Card, SEPA Direct Debit or any other payment method by bringing your own payment service provider or by leveraging your bank contract.
Twikey offers a simple and safe multichannel solution to negotiate and collect recurring (or even occasional) payments. Twikey has integrations with a lot of accounting and CRM packages. It is the first and only provider to operate on a European level for Direct Debit and can work directly with all major Belgian and Dutch Banks. However you can use the payment options of your favorite PSP to allow other customers to pay as well.
To use the Twikey API client, the following things are required:
- Get yourself a Twikey account.
- PHP >= 5.6
- Up-to-date OpenSSL (or other SSL/TLS toolkit)
By far the easiest way to install the Twikey API client is to require it with Composer.
$ composer require twikey/twikey-api-php:^0.6.0
{
"require": {
"twikey/twikey-api-php": "^0.6.0"
}
}
The api works the same way regardless if you want to create a mandate, a transaction, an invoice or even a paylink. the following steps should be implemented:
-
Use the Twikey API client to create or import your item.
-
Once available, our platform will send an asynchronous request to the configured webhook to allow the details to be retrieved. As there may be multiple items ready for you a "feed" endpoint is provided which acts like a queue that can be read until empty till the next time.
-
The customer returns, and should be satisfied to see that the action he took is completed.
Find our full documentation online on api.twikey.com.
Initializing the Twikey API client using your preferred Http client (eg. guzzle) and configure your API key which you can find in the Twikey merchant interface.
use GuzzleHttp\Client;
use GuzzleHttp\ClientInterface;
use Twikey\Api;
$httpClient = new Client([
'http_errors' => false,
'debug' => false
]);
$twikey = new Twikey($httpClient,$APIKEY);
Invite a customer to sign a SEPA mandate using a specific behaviour template (ct) that allows you to configure the behaviour or flow that the customer will experience.
$invite = $twikey->document->create([
"ct" => $ct
"email" => "john@doe.com",
"firstname" => "John",
"lastname" => "Doe",
]);
After creation, the link is available for signing and ideally you store the mandatenumber for future usage (eg. sending transactions).
// store $invite->mndtId for this customer
header("Location: " . $invite->url);
$twikey->document->feed(new class implements DocumentCallback {
function handleNew($update)
{
print("New " . $update->Mndt->MndtId . ' @ '. $update->EvtTime . "\n");
}
function handleUpdate($update)
{
$rsn = $update->AmdmntRsn->Rsn;
print("Update: " . $update->Mndt->MndtId . ' -> '. $rsn . ' @ '. $update->EvtTime . "\n");
}
function handleCancel($update)
{
$rsn = $update->CxlRsn->Rsn;
print("Cancel: " . $update->OrgnlMndtId . ' -> '. $rsn . ' @ '. $update->EvtTime . "\n");
}
}
);
Send new transactions and act upon feedback from the bank.
$invite = $twikey->transaction->create([
"mndtId" => "CORERECURRENTNL16318",
"message" => "Test Message",
"ref" => "Merchant Reference",
"amount" => 10.00, // 10 euro
"place" => "Here"
]);
$count = $twikey->transaction->feed(new class implements TransactionCallback{
public function handle($transaction)
{
print("Transaction " . $transaction->id . ' @ '. $transaction->date . ' has '. $transaction->state . "\n");
}
});
When wants to inform you about new updates about documents or payments a webhookUrl
specified in your api settings be called.
$queryString = decode($_SERVER['QUERY_STRING']);
$signatureHeader = $_SERVER['HTTP_X_SIGNATURE'];
Twikey::validateWebhook($APIKEY, "abc=123&name=abc", $queryString, $signatureHeader);
If you wish to learn more about our API, please visit the Twikey Api Page. API Documentation is available in English.
Want to help us make our API client even better? We take pull requests.
Contact: www.twikey.com