grant_type=refresh_token).POST {{uatAPI}}/oauth/token and exchanges an existing refresh token for a new access token (and typically a new refresh token).{{uatAPI}} — Base URL for the UAT API host (e.g., https://...). Used in the request URL.{{oauthAccessToken}} — Refresh token value that will be sent as the refresh_token form field.application/x-www-form-urlencoded with the fields:grant_type: refresh_tokenrefresh_token: {{oauthAccessToken}}access_token (string) — New bearer access token.token_type (string) — Typically Bearer.expires_in (number) — Lifetime in seconds (e.g., 900).refresh_token (string) — New refresh token (may rotate).{
"access_token": "...",
"token_type": "Bearer",
"expires_in": 900,
"refresh_token": "..."
}
{{oauthAccessToken}} is missing/empty or contains an access token instead of a refresh token.