cURL
curl --request POST \ --url https://api.byblend.com/api/v1/auth/refresh \ --header 'Authorization: Bearer <token>'
{ "access_token": "eyJhbGciOiJIAzI1NiIsInR5cCI6IkpXVCJ9..." }
Refresh the access token using the refresh token. Note that this endpoint requires the refresh token (not access token) be sent in the Authorization header. Returns a new JWT access token.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response with new access token
New JWT access token
"eyJhbGciOiJIAzI1NiIsInR5cCI6IkpXVCJ9..."