Refresh access token
POST
https://app.speybooks.com/api/v1/auth/refreshExchange a valid refresh token for a new access token. The refresh token itself is not rotated and stays valid until it expires or is invalidated. A refresh token issued before a password change is rejected and the client must log in again.
Body parameters
refreshTokenstringrequiredRefresh token from the login response.
Response
200Returns a new access token. The refresh token remains valid.
Show response fields
accessTokenstringexpiresInintegerError codes
400No refresh token provided.
401Invalid, expired, or revoked refresh token.
429Rate limit exceeded.