OAuth 2.0
If your application leverages for authentication, you can follow the steps below to obtain a token pair via .
- The
grant_typewill always beauthorization_code. - The
client_idandclient_secretvalues can be obtained from the Configuration tab for your application in the Developer Console.
code, build and visit your
in your browser. Complete the OAuth 2.0 flow and,
upon redirecting to your configured redirect URL, the authorization code will be
at the end of the URL. As a reminder, this authorization code is only valid for
30 seconds. This means you must enter it to the designated field in Postman and
click Send before it expires. Therefore, we recommend entering the other
values so the API call is ready to send as soon as you get the code.

