cURL
curl --request PUT \ --url https://{tenant}.fincode.software/api/v6/services/securitymanagement/refresh-token \ --header 'Content-Type: application/json' \ --header 'platform: <platform>' \ --header 'uuid: <uuid>' \ --data ' { "refresh_token": "<string>" } '
Obtain a new access token and refresh token using a valid refresh token.
application/json
fincode
200
/login
/refresh-token
curl -X PUT "https://remitjunction.fincode.software/api/v6/services/securitymanagement/refresh-token" \ -H "Content-Type: application/json" \ -H "platform: fincode" \ -H "uuid: 200" \ -d '{ "refresh_token": "YOUR_VALID_REFRESH_TOKEN_HERE" }'
Invalid Refresh Token (401)
Token Already Used (403)
Token refreshed successfully