swikly / swikly-php
A PHP wrapper for Swikly's API
Requires
- php: >=5.6.0
This package is not auto-updated.
Last update: 2025-03-10 17:06:08 UTC
README
This is no longer supported, please consider using https://api.swikly.com or https://apisandbox.swikly.com for sandbox environment.
New SWIKLY_LINK.
It is a unique web link that works with your Swikly account. It allows you to request swiks deposit or deposit for fixed amounts known in advance.
Swikly PHP SDK
Swikly provides a new and easy way to request the equivalent to a down payment or security deposit (we call that "a swik") but with no funds being transferred.
When you request a swik, you're effectively asking your customer to provide a credit card hold, specifying an amount and a period during which the deposit will be held.
This allows you to secure your bookings or request a down payment or security deposit remotely, simply, and with complete confidence. Swikly also provides a payment option which is cheaper than most of its competitors.
Requirements
PHP 5.6.0 and later.
Composer
You can install the Swikly SDK via Composer:
composer require swikly/swikly-php
To use the SDK, use Composer's autoload
require_once('vendor/autoload.php');
Manual installation
If you do not wish to use Composer, you can download the sources. Then, to use the SDK, include the init.php
file.
require_once('/path/to/swikly-php/init.php');
Ressources
Wiki: To understand all the SDK features and how to use them.
Github repository: Examples are available in the examples directory.
API documentation: A documentation up to date about the API used by this SDK.
Quick examples
Create a Swikly API client
<?php // Require the Composer autoloader. require 'vendor/autoload.php'; use Swikly\Swik; use Swikly\SwiklyAPI; //Instantiate a Swikly API client $swkAPI = new SwiklyAPI('Your_Api_Key', 'YOUR_API_SECRET', 'development');
Create a new Swik
<?php // Create a swik object $swik = new Swik(); // Set all the swik informations $swik->setClientFirstName("Jean") ->setClientLastName("Dupont") ->setClientEmail("jean.dupont@gmail.com") ->setClientPhoneNumber("+33 6 20 20 20 20") // Send SMS to that number ->setClientLanguage("FR") // "EN" or "FR" ->setSwikAmount("50") ->setSwikDescription("1h de canyoning le 12/08/2017....") ->setSwikEndDay("12") ->setSwikEndMonth("08") ->setSwikEndYear("2017") ->setSwikId("YOUR_ID") ->setSendEmail("true") ->setSwikType("security deposit") // "reservation" or "security deposit" ->setCallbackUrl('https://mywebsite.com/resultSwik'); // Create and send your new swik to your client $result = $swkAPI->newSwik($swik); // Print result of the operation if ($result['status'] == 'ok') { echo "New swik created\n"; echo "Your client can accept the swik at this address: " . $result['acceptUrl']; } else { echo "Failed to create the swik"; echo "Error = " . $result['message']; }
Create a new payment:
<?php // Create a swik object $swik = new \Swikly\Swik(); // Set all the swik informations $swik->setClientFirstName("Jean") ->setClientLastName("Dupont") ->setClientEmail("jean.dupont@gmail.com") ->setClientPhoneNumber("+33 6 20 20 20 20") // Send SMS to that number ->setClientLanguage("FR") // "EN", "FR", 'NL', 'DE' ->setSwikAmount("50") ->setSwikDescription("1h de canyoning le 12/08/2017....") ->setSwikId("YOUR_ID") ->setSendEmail("true") ->setCallbackUrl('https://mywebsite.com/resultSwik'); // Create and send your new swik to your client $result = $swkAPI->newPayment($swik); // Print result of the operation if ($result['status'] == 'ok') { echo "New payment created\n"; echo "Your client can pay you at this address: " . $result['acceptUrl']; } else { echo "Failed to create a newPayment"; echo "Error = " . $result['message']; }
Cancel a swik:
<?php // Create a swik object $swik = new Swik(); // Set the Swik Id (yours or the one from Swikly) $swik->setSwikId("YOUR_ID"); // Deleting the swik $result = $swkAPI->deleteSwik($swik); // Print result of the operation if ($result['status'] == 'ok') { echo "Swik deleted correctly"; } else { echo "Failed to delete the swik"; echo "Error = " . $result['message']; }
Getting a specific Swik:
<?php // Create a swik object $swik = new Swik(); // Set the Id you used to create it $swik->setSwikId("YOUR_ID"); // Get the list of your swiks $result = $swkAPI->getSwik($swik); // Print result of the operation if ($result['status'] == 'ok') { echo "My swik = "; print_r($result['swik']); } else { echo "Failed to get the swik"; echo "Error = " . $result['message']; }
List all my Swiks
<?php // Get the list of your swiks $result = $swkAPI->getListSwik(); // Print result of the operation if ($result['status'] == 'ok') { echo "List of swik(s) = "; print_r($result['list']); } else { echo "Failed to get the swik list"; echo "Error = " . $result['message']; }