Authentication
Default headers which should be included in the API request.
Last updated
Default headers which should be included in the API request.
Last updated
Request are authenticated using Bearer tokens
. We provide a token for the requests, these tokens are used in API Calls , developers should also use http status
to know the result of an API call .
Authorization headers should be in the following format: Authorization: Bearer token
. Pass your secret key as a bearer token
in the request header to authorize all requests.
All API calls on FSDH are authenticated. API requests made without authorization will fail with the status code 401: Unauthorized
.
To authorize API calls from your server, pass your secret key as a bearer token. This means passing an Authorization
header with a value of "Bearer: YOUR_SECRET_KEY"
.