Refresh an Authentication Token
PUT/auth/token
This endpoint allows clients to refresh an existing authentication token. When a token is sent, the system checks whether it is still valid and trusted. On success, it returns a JSON response with the new token details. If the token is invalid, expired, or malformed, a structured error is returned. To refresh a token, provide the refresh token via form data. On success, a JSON payload with the new access token and related metadata will be returned. In case of invalid credentials or an internal error, a structured error response is returned.
Request
Responses
- 200
- 400
- 401
- 500
OK
Bad Request: invalid or missing form data
Unauthorized: invalid or expired refresh token
Internal Server Error