Authentication
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.
Endpoint: https://settle.com/login
Take a look at how you might call this method using Http
:
Subsequent requests to the API will contain the Authenticated headers as follows:
Authenticated Requests will look like:
Last updated