User Token Refresh
GET
/v1/users/refresh
const url = 'https://example.com/api/v1/users/refresh';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/users/refresh \ --header 'Authorization: <Authorization>'HandleAuthRefresh returns a handler that will issue a new token from an existing token. This does not validate that the user still exists within the database.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”OK