How to invoke Circuit URL from Postman

How to invoke Circuit URL from Postman

If you use a self client to generate the Grant token, then you need to use Postman to generate the access token for your usage. In postman, make a POST request to the following sample URL :


https://accounts.zoho.com/oauth/v2/token?code={{GRANT_TOKEN}}&client_id={{CLIENTID}}&client_secret={{CLIENT_SECRET}}&grant_type=authorization_code 


Replace the specified variables with the respective values to generate an access token. You can also find a sample cURL which you can import via postman to generate access token as follows :

  1. curl --location --request POST 'https://accounts.zoho.com/oauth/v2/token?code={{GRANT_TOKEN}}&client_id={{CLIENT_ID}}&client_secret={{CLIENT_SECRET}}&grant_type=authorization_code' \