SDK authentication using access token

In order to pair the physical payment device, to our online payment profile. You need to request an access token from our backend api for the specific terminal you want to authenticate as.

You can use the POST terminal access token request to retrieve a access token from our backend.

You can use this access token and put this as the pairing code in the pair request.

Once you have received the access token, you can forward it to the SDK. The SDK will validate the access token and login the user.

try {
    BrouwerVosSDK.getInstance().pair(Context context, "your access token");
} catch (Exception e) {
    // something went wrong while pairing
}

Once you have called this pair method and received no error, you are good to create transactions.

Last updated