Quick Start

Good to know: A quick start guide can be good to help folks get up and running with our API in a few steps. Some people prefer diving in with the basics rather than meticulously reading every page of documentation!

Authorization

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error. send your API KEY as X-ACCESS-KEY in the request headers.

SANDBOX KEY: FK_SANDBOX_75YQHC42MY76ZBBJQEV

Obtain your Live API KEY from the Fees.ng team

{
  'X-ACCESS-KEY':'FK_SANDBOX_75YQHC42MY76ZBBJQEV',
  'Content-Type': 'application/json',
}

Authorisation Error

{
    "status": "error",
    "message": "Authorization failed. Invalid Key"
}

Your API keys are provided by us prior to integration. contact [email protected] to get your live keys

To be able to create and update students on our platform, your request will be authenticated by IP addresses to ensure the request is coming from you. Kindly provide the IP addresses where your server requests will originate from

Request URL

We provide two base urls which you can utilise for sandbox and production requests

Take a look at how you might call this method using our official libraries, or via curl:

Last updated