Authorization
Authorization is done via sending two headers:
X-Processing-Key – The public key, that can be obtained from user's account
X-Processing-Signature – POST body, signed by the secret key HMAC-SHA512, secret key is also obtained from user's account
See example below in PHP language
$paramsArray = ['key' => 'value'];
$requestBody = json_encode($paramsArray);
$signature = hash_hmac('sha512', $requestBody, $apiSecret);
Last updated
Was this helpful?