Rootshive
Create an AccountOnboardingStartUpsProduct DocumentationGo back Home
  • Welcome!
  • Quick Start
  • Reference
    • Authentication
      • Check Source
      • Generate Access Token
    • Collections
      • Wallet Balance
      • Create Payme
      • Generate Nuban
      • Verify Collections
    • Transfers
      • Initiating Single Transfers
      • Initiate Transfer (Single) API
      • Single Transfer Status
      • Reconcile Transfer
    • Events
      • Overview
Powered by GitBook
On this page
  • Check request source
  • This endpoint helps you check for your server's IP

Was this helpful?

  1. Reference
  2. Authentication

Check Source

Authorize this API call by including Authorization header that contains the word 'Basic' followed by a space and a base64-encoded string 'appid:rhkey' i.e. 'Basic base64(appid:rhkey)'

Check request source

This endpoint helps you check for your server's IP

POST {{baseUrl}}/

Headers

Name
Type
Description

Basic*

String

Basic base64(appid:rhkey)

{
    "status": "200",
    "log": "True",
    "data": {
        "message": "Source Retrieved",
        "source": "xxx.xxx.xxx.xxx"
    }
}
{
    "status": "401",
    "logged": false,
    "data": {
        "message": "Authorization reqired"
    }
}

Good to know: it is crucial to provide Rootshive with your server's IP address for whitelisting purposes so that only withdrawal requests from that specific IP address are authorized.

PreviousAuthenticationNextGenerate Access Token

Last updated 1 year ago

Was this helpful?