{ "refresh_token": "your_refresh_token" }
curl --location --request POST 'https://dev.your-api-server.com/v1/auth/refresh' \ --header 'Content-Type: application/json' \ --data-raw '{ "refresh_token": "your_refresh_token" }'
{ "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "token_type": "Bearer", "expires_in": 3600 }