🚨 All authorized endpoints require the
Without it, the API responds with
Authorization: Bearer <ACCESS_TOKEN> header in every request.Without it, the API responds with
401 - Unauthorized and blocks the call.1. Login Operation
🔐 Login operations always use a username and password pair.Example Request Payload:
API Endpoint:/v1/auth/login
2. Authentication Token Refresh Operation
🔁 When the access token expires, renew it with the refresh token.Example Request Payload:
API Endpoint:/v1/auth/refresh
Login Operation.