Most TaskFlow API endpoints require authentication. The API uses JSON Web Tokens (JWTs): you obtain one by calling the login or signup endpoint, then include it in every subsequent request via theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Ajith66310/task-manager-full/llms.txt
Use this file to discover all available pages before exploring further.
Authorization header. Tokens expire after 7 days by default (configurable via JWT_EXPIRES_IN in user-service/.env). Store tokens securely and never expose them in client-side code or version control.
Getting started
Sign up or log in
Call A successful login returns a token you can use immediately:
POST /api/auth/signup to create an account, or POST /api/auth/login if you already have one. Both endpoints return a JWT in the response data field.