Quick Start
Authentication
All DCKAP Integrator API's needs to be authenticated using bearer token or with your account username and password.
Authentication using Bearer Token
This is the recommended approach.
As a first step, bearer token should be generated from the DCKAP Integrator account. Refer the below link to fetch the access token.
API Access KeysOnce the token is generated, it should be passed in the API request headers like below. The {generated_access_token} should be replaced with your token.
Bearer Token Example
GET
https://v3.cloras.com/api/sample/url
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Bearer {generated_access_token} |
Authentication using Username and Password
The API's can also be authenticated using your DCKAP Integrator account username and password.
Username & Password Example
GET
https://v3.cloras.com/api/sample/url
Headers
Name | Type | Description |
---|---|---|
username | string | Email Address / Username |
password | string | Your Account Password |
Last updated