Integration Cloud 7.0.0 | Settings | OAuth 2.0 | Refreshing Access Tokens Using Refresh Tokens
 
Refreshing Access Tokens Using Refresh Tokens
You can refresh Access Tokens using Refresh Tokens.
*To refresh access tokens using Postman
1. Add the Postman extension to your Google Chrome web browser.
2. Open the Postman application.
3. Make a HTTP POST call with the following details:
Field
Description
Post URL
Provide the following URL:
https://abc.webmethodscloud.com/integration/rest/oAuth/getToken
Query Parameters
Provide the following query parameters:
grant_type - The Grant Type value will be refresh_token
refresh_token is the refresh token obtained while generating the tokens.
Example of an HTTP POST request for refreshing an access token:
https://abc.webmethodscloud.com/integration/rest/oAuth/getToken?grant_type=refresh_token&refresh_token= <refresh_token_id>
Note:
In Postman, select Basic Auth as the Authorization type and specify Client ID and Client Secret as the Username and Password while refreshing the token.
4. An access token will be generated which can be used to invoke the service URLs. The Refresh Count value will decrease by 1.