Last updated

Authentication

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

1. Retrieve API Client ID + Secret

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

2. Postman Authorization

We provide 3 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/

3. Redocly Try It Authorization

You can hit our API directly by click "Try It" in each endpoint API with this ways below:

TryIt

Then in field Access Token URL type manually https://{{subdomain}}/api/v3/token/oauth2. Set the environments variable value.
And it will be generate your access_token.

AccessTokenUrl