Get new tokens using a refresh token.
The refresh token must be valid and not expired.
cURL
curl --request POST \ --url https://api.example.com/api/auth/refresh \ --header 'Content-Type: application/json' \ --data ' { "refresh_token": "<string>" } '
{ "access_token": "<string>", "refresh_token": "<string>", "token_type": "bearer" }
Request schema for token refresh.
Successful Response
Response schema for authentication tokens.