Authentication
Authentication is mandatory for all API requests
The authenticatio is a 2 step process.
Step 1: Get Access Token
User your customerID as username and customerKey as password to get access token.
Please check your onboarding pack for customer_id and customer_key
POST
https://<server_name>/oauth/service
Headers
Name
Type
Description
Content-Type*
String
application/x-www-form-urlencoded
Authorization*
Base64
Basic Auth
Request Body
Name
Type
Description
grant_type*
String
client_credentials
Step 2: Sending access token as Request header
Send the token from Step 1 as Bearer token in the header for all API requests
Last updated