Last updated

Authentication

Our API is secured with OAuth 2.0 Client Credentials
(https://www.oauth.com/oauth2-servers/access-tokens/client-credentials/)

This information can be found by logging into your account then go to My Profile - Developer Tab
If you cannot see the Developer Tab please ask you System Administrator to assign that Role for you

Client ID and Client
Secret

We provide 2 ways to obtain the access_token:

1.Send client credentials in Body Authentication
You can as Request Body payload with copy Guid of client_id and client_secret

Get OAuth2 Token


Content-Type: application/json



  1. Send as Basic Authentication Header

Header Content-Type: application/x-www-form-urlencoded

Concatenate client_id:client_secret then encode to base64 string, use Basic Authentication

application/x-www-form-urlencoded

Send As Basic Auth
Header



  1. Send as Client Credentials in Body

Send as Client Credentials in
Body

Reference:
https://www.oauth.com/oauth2-servers/access-tokens/client-credentials/