Access Token

All request must have an Access token. Access tokens are used to make API requests on behalf of your merchant account. It is used for Authorization.

Access tokens must be kept confidential in transit and in storage. The only parties that should ever see the access token are Kitegateway APIs and your servers. Your application should ensure the storage of the access token is not accessible to other applications

How to get an access token

You have to use your merchant api_key and api_secret in order to get an access token by making a request as below

Live

POST  https://kitegateway.com/v1/auth/token

Sandbox

POST  https://sandbox.kitegateway.com/v1/auth/token

Request Headers

Header

Value

Required

Content-Type

application/json

YES

Accept

application/json

YES

Secret-Key

YOUR_SECRET

YES

Header: Authorization

Last updated