curl --request POST \
--url http://localhost:8080/cabinet/auth/refresh \
--header 'Content-Type: application/json' \
--data '
{
"refresh_token": "<string>"
}
'{
"access_token": "<string>",
"refresh_token": "<string>",
"expires_in": 123,
"token_type": "bearer"
}Refresh access token using refresh token.
curl --request POST \
--url http://localhost:8080/cabinet/auth/refresh \
--header 'Content-Type: application/json' \
--data '
{
"refresh_token": "<string>"
}
'{
"access_token": "<string>",
"refresh_token": "<string>",
"expires_in": 123,
"token_type": "bearer"
}