Authentication

circle-info

Good to know: All requests require authentication.

Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can generate an API key from your Dashboard at any time.

Make the Authentication request

Send an authentication request to the login endpoint. This will create a token, id and expiry which will form the headers of any request for the time until the expiry time passed.

circle-info

Endpoint: https://settle.com/login

Take a look at how you might call this method using Http:

POST http://settle.africa/login  HTTP/1.1
Content-Type: application/json
{  
    "id":"1234567890",
    "password":"jumairah"
}

Subsequent requests to the API will contain the Authenticated headers as follows:

Authenticated Requests will look like:

Last updated