Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/api-introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: 'Overview of the Chatbot API endpoints'

# API Documentation

The Chatbot API provides a set of endpoints for managing chat functionality, user authentication, and administrative tasks.
The Chatbot API provides a set of endpoints for managing chat functionality, user authentication, team management, and administrative tasks.

## Base URL

Expand All @@ -29,5 +29,7 @@ The API is organized into the following categories:
- `/api/chat/*` - Chat functionality
- `/api/users/*` - User management
- `/api/users/stats/*` - User statistics
- `/api/teams/*` - Team management
- `/api/teams/stats/*` - Team statistics

For detailed information about specific endpoints, see their respective documentation pages.
4 changes: 3 additions & 1 deletion docs/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This is a Next.js-based chatbot application that provides real-time chat functio
- User authentication
- Admin dashboard
- User statistics
- Team management
- Responsive design
- Next.js 13+ App Router
- TypeScript support
Expand All @@ -27,7 +28,8 @@ app/
├── api/ # API routes
│ ├── auth/ # Authentication endpoints
│ ├── chat/ # Chat endpoints
│ └── users/ # User management endpoints
│ ├── users/ # User management endpoints
│ └── teams/ # Team management endpoints
├── components/ # Reusable components
└── settings/ # User settings
```
Expand Down
8 changes: 7 additions & 1 deletion docs/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@
},
{
"group": "API Reference",
"pages": ["api-introduction", "api-authentication", "api-chat", "api-users"]
"pages": [
"api-introduction",
"api-authentication",
"api-chat",
"api-users",
"api-teams"
]
}
]
}