accessToken expires, you do not need to ask the user to re-authorize or re-login. Instead, you can use the refreshToken (provided in the initial token response) to obtain a new accessToken.curl --location '/api/auth/admin/token/refresh_token' \
--header 'Content-Type: application/json' \
--data '{
"clientId": "string",
"clientSecret": "string",
"refreshToken": "string"
}'{
"accessToken": "string",
"expiresIn": 0,
"refreshToken": "string",
"refreshTokenExpireIn": 0,
"scope": "string",
"userId": "string"
}