curl --request POST \
--url https://api-staging.boost.xyz/auth/refresh \
--header 'Content-Type: application/json' \
--data '{
"refreshToken": "<string>"
}'
{
"accessToken": "<string>"
}
get a new access token
curl --request POST \
--url https://api-staging.boost.xyz/auth/refresh \
--header 'Content-Type: application/json' \
--data '{
"refreshToken": "<string>"
}'
{
"accessToken": "<string>"
}
Success
The response is of type object
.