PHP client library to use the Snelstart B2B API.
Note that this library is not created, or maintained, by Snelstart.
This release will support both version 1 and version 2. Version 1 is considered deprecated, as Snelstart does not activly promote it anymore. Instructions on how to upgrade will be added when the next release takes place.
Installation is easy as 1, 2, 3 thanks to Composer.
composer require iwd-nl/snelstart-php
Create an account at [https://b2bapi-developer.snelstart.nl/] and subscribe to 'Verkenning'. Obtain the Primary and Secondary key from your Profile and generate a key on the web interface of Snelstart under 'Maatwerk'. You are going to need these credentials for the next chapter.
Now that you have obtained the credentials you can start by connection the library to the API.
$primaryKey = "<primary>";
$secondaryKey = "<secondary>";
$clientKey = "<maatwerksleutel>";
$bearerToken = new \SnelstartPHP\Secure\BearerToken\ClientKeyBearerToken($clientKey);
$accessTokenConnection = new \SnelstartPHP\Secure\AccessTokenConnection($bearerToken);
$accessToken = $accessTokenConnection->getToken();
$connection = new \SnelstartPHP\Secure\V2Connector(
new \SnelstartPHP\Secure\ApiSubscriptionKey($primaryKey, $secondaryKey),
$accessToken
);
_Please note that there is also a class named SnelstartPHP\Secure\CachedAccessTokenConnection
for when you are done with developing. This will automatically take care of renewing expired access tokens. _
We implemented the EchoConnector
to test to see if you are authenticated.
For an example see var/doc/v2/inkoopboeking_find_all.php
For an example see var/doc/v2/inkoopboeking_add.php
Not all resources are currently implemented. Feel free to create a pull request.