.. _user_documentation: User documentation -------------------- .. toctree:: :maxdepth: 1 :caption: User Documentation: User guide =========== - How to use the application (step-by-step tutorials) - Screenshots and examples - Common tasks and FAQs API reference =============== - Overview of available APIs - Authentication and authorization details - Request and response formats - Error handling .. ### Authentication .. All API requests require a valid token. Obtain your token by logging in. .. ### Endpoints .. #### GET /api/tasks .. Retrieve all tasks for the authenticated user. .. **Response:** .. ```json .. [ .. { .. "id": 1, .. "title": "Task 1", .. "description": "Description of Task 1" .. } .. ] .. ```