Authentication
To make API calls on Parallex Pay, you’ll have to pass a Bearer Token
To generate a token you simply
Call
https://seerbitapi.com/api/v2/encrypt/keys
Pass your public key and secret key.
You'll be authenticated and receive a token to process further API calls.
Basic authentication is a simple authentication scheme built into the HTTP protocol. The client sends HTTP requests with the Authorization header that contains the word Basic followed by a space and a base64-encoded string publicKey:privateKey.
The token is gotten like this, base64Encode(publicKey:privateKey);
Last updated