The SeerBit API is customisable and its functionality can be tailored to user's needs and request.
SeerBit's API is designed based on REST API. Our API is prepared with understandable resource-oriented URLs, welcomes form-encoded request bodies, sends back JSON-encoded responses, and utilizes standard HTTP response codes, authentication, and verbs.
We offer an easy, comfortable and secure payment flow for web applications. Putting into consideration ease of use, the SeerBit Inline code ensures that users start and finish making payment on the same page by just simply copying the code in the embeded section and add to your page.
To access the following services ( Authorization, Capture, Refund, Cancel, Authorise3ds, Preauth transactions status, Non-3ds payments ) successfully, you simply need to pass Basic authentication
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);