Authentication
When using the API all requests must be performed with an authorized request. This document describes how to receive your Access Token.
Authentication endpoint
The live authentication endpoint can be accessed via:
https://api.boekuwzending.com/token
The staging authentication endpoint can be accessed via:
https://staging.api.boekuwzending.com/token
This endpoint need to be called with the application/x-www-form-urlencoded
Content-Type header using the POST
method. Use the following curl request as reference.
PHP SDK
<?php
require 'vendor/autoload.php';
const CLIENT_ID = '';
const CLIENT_SECRET = '';
$client = \Boekuwzending\ClientFactory::build(CLIENT_ID, CLIENT_SECRET);
# The PHP SDK will handle Access Tokens automatically.