I'm making an application that requires user authentication by OAuth to perform certain actions, and well to avoid the problem of the user having to repeat the OAuth multiple times, I can use the Refresh Token, but reading I saw that they combined the use of the same endpoint that returns the code in the OAuth flow with that of the Refresh Token

But there's a problem, it redirects me here:
https://developers.figma.com/docs/rest-api/authentication/#refresh-oauth-token
And this page only covers the OAuth flow. There are no examples or explanations of how to use the same endpoint for this flow to use the Refresh Token and get a new one. By the way, the page doesn't even mention the refresh token's validity period. The only thing they mention at the end of the document is that the access token lasts 24 hours. It's confusing because I don't know if it's just the one generated manually on the page or both (it would be good to clarify that). I'd like to know if there's any official documentation that I'm not seeing on how to use this endpoint for the refresh token, in case I'm not seeing it. Thanks in advance.