cURL
curl --request POST \ --url https://api.app.fleetit.com/api/auth/token/refresh/ \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{}'
{ "access": "" }
This endpoint allows users to refresh their authentication token. The request requires a valid refresh token to be present in the cookie named refresh_token.
refresh_token
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The body is of type object.
object
Successful response
""
Was this page helpful?