curl --request POST \
--url https://sandbox.api.fin.com/v1/oauth/refresh-token \
--header 'Content-Type: application/json' \
--data '
{
"refresh_token": "<string>"
}
'{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"access_token_ttl": "2025-12-28 10:34:45+00",
"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refresh_token_ttl": "2025-12-28 10:34:45+00",
"current_time": "2025-12-21 10:34:45+00"
}Generate a new token pair based from a refresh token.
curl --request POST \
--url https://sandbox.api.fin.com/v1/oauth/refresh-token \
--header 'Content-Type: application/json' \
--data '
{
"refresh_token": "<string>"
}
'{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"access_token_ttl": "2025-12-28 10:34:45+00",
"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refresh_token_ttl": "2025-12-28 10:34:45+00",
"current_time": "2025-12-21 10:34:45+00"
}refresh_token received from the Issue Token endpoint for a new
pair of access_token and refresh_token
YYYY-MM-DD HH:MM:SS+00The refresh_token received from the /v1/oauth/token endpoint.
Token issued successfully
The access token for API authentication
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
Access token expiration timestamp
"2025-12-28 10:34:45+00"
The refresh token for obtaining new access tokens
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
Refresh token expiration timestamp
"2025-12-28 10:34:45+00"
Current server timestamp
"2025-12-21 10:34:45+00"