TutorHub Educational Platform
TutorHub is an educational platform connecting students with tutors for personalized learning experiences. Features include tutor profiles, course packs, scheduling, enrollments, and payment processing.
This documentation is designed to be consumed by both humans and AI agents. It provides comprehensive information about the backend services, APIs, data models, and integration patterns.
Detailed Documentation Files
For comprehensive documentation, the following detailed files are available:
-
llms-full.txt: Complete documentation including all service designs, data models, and API specifications in a single document with nested table of contents.
-
llms-restapi.txt: REST API focused documentation containing all service REST API guides combined. Ideal for understanding HTTP endpoints, request/response formats, and integration patterns.
-
llms-prompts.txt: Frontend development prompts for AI-assisted UI building. Contains detailed specifications for implementing frontend features with data models, API endpoints, and UI requirements.
Documentation Overview
TutorHub Educational Platform
Version : 1.0.502
TutorHub is an educational platform connecting students with tutors for personalized learning experiences. Features include tutor profiles, course packs, scheduling, enrollments, and payment processing.
How to Use Project Documents
The Tutorhub project has been designed and generated using Mindbricks, a powerful microservice-based backend generation platform. All documentation is automatically produced by the Mindbricks Genesis Engine, based on the high-level architectural patterns defined by the user or inferred by AI.
This documentation set is intended for both AI agents and human developers—including frontend and backend engineers—who need precise and structured information about how to interact with the backend services of this project. Each document reflects the live architecture of the system, providing a reliable reference for API consumption, data models, authentication flows, and business logic.
By following this documentation, developers can seamlessly integrate with the backend, while AI agents can use it to reason about the service structure, make accurate decisions, or even generate compatible client-side code.
Accessing Project Services
Each service generated by Mindbricks is exposed via a dedicated REST API endpoint. Every service documentation set includes the base URL of that service along with the specific API paths for each available route.
Before consuming any API, developers or agents must understand the service URL structure and environment-specific endpoints.
Service Endpoint Structure
| Environment | URL Pattern Example |
|---|---|
| Preview | https://tutorhub.prw.mindbricks.com/auth-api |
| Staging | https://tutorhub-stage.mindbricks.co/auth-api |
| Production | https://tutorhub.mindbricks.co/auth-api |
Replace auth with the actual service name as lower case (e.g., order-api, bff-service, customermanagement-api etc.).
Environment Usage Notes
- Preview APIs become accessible after a project is previewed inside the Mindbricks platform. These are ideal for development and testing.
- Staging and Production APIs are only accessible after the project is deployed to cloud environments provisioned via Mindbricks.
- In some cases, the project owner may choose to deploy services on their own infrastructure. In such scenarios, the service base URLs will be custom and should be communicated manually by the project owner to developers or AI agents.
Frontend applications should be designed to easily switch between environments, allowing dynamic endpoint targeting for Preview, Staging, and Production.
Getting Started: Use the Auth Service First
Before interacting with other services in the Tutorhub project, AI agents and developers should begin by integrating with the Auth Service.
Mindbricks automatically generates a dedicated authentication microservice based on the project’s authentication definitions provided by the architect. This service provides the essential user and access management foundation for the project.
Agents should first utilize the Auth Service to:
- Register and authenticate users (login)
- Manage users, roles, and permissions
- Handle user groups (if defined)
- Support multi-tenancy logic (if configured)
- Perform Policy-Based Access Control (PBAC), if activated by the architect
Auth Service Documentation
Use the following resources to understand and integrate the Auth Service:
-
REST API Guide – ideal for frontend and direct HTTP usage
Auth REST API Guide -
Event Guide – helpful for event-driven or cross-service integrations
Auth Event Guide -
Service Design Document – overall structure, patterns, and logic
Auth Service Design
Note: For most frontend use cases, the REST API Guide will be the primary source. The Event Guide and Service Design documents are especially useful when integrating with other backend microservices or building systems that interact with the auth service indirectly.
Using the BFF (Backend-for-Frontend) Service
In Mindbricks, all backend services are designed with an advanced CQRS (Command Query Responsibility Segregation) architecture. Within this architecture, business services are responsible for managing their respective domains and ensuring the accuracy and freshness of domain data.
The BFF service complements these business services by providing a read-only aggregation and query layer tailored specifically for frontend and client-side applications.
Key Principles of the BFF Service
-
Elasticsearch Replicas for Fast Queries:
Each data object managed by a business service is automatically replicated as an Elasticsearch index, making it accessible for fast, frontend-oriented queries through the BFF. -
Cross-Service Data Aggregation:
The BFF offers an aggregation layer capable of combining data across multiple services, enabling complex filters, searches, and unified views of related data. -
Read-Only by Design:
The BFF service is strictly read-only. All create, update, or delete operations must be performed through the relevant business services, or via event-driven sagas if designed.
BFF Service Documentation
-
REST API Guide – querying aggregated and indexed data
BFF REST API Guide -
Event Guide – syncing strategies across replicas
BFF Event Guide -
Service Design – aggregation patterns and index structures
BFF Service Design
Tip: Use the BFF service as the main entry point for all frontend data queries. It simplifies access, reduces round-trips, and ensures that data is shaped appropriately for the UI layer.
Business Services Overview
The TutorHub Educational Platform project consists of multiple business services, each responsible for managing a specific domain within the system. These services expose their own REST APIs and documentation sets, and are accessible based on the environment (Preview, Staging, Production).
Usage Guidance
Business services are primarily designed to:
- Handle the state and operations of domain data
- Offer Create, Update, Delete operations over owned entities
- Serve direct data queries (
get,list) for their own objects when needed
For advanced query needs across multiple services or aggregated views, prefer using the BFF service.
Available Business Services
tutorCatalog Service
Description: Handles tutor public profiles, course packs, public categories, and course pack materials with strict public/private access enforcement for course pack content and materials.
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://tutorhub.prw.mindbricks.com/tutorcatalog-api |
| Staging | https://tutorhub-stage.mindbricks.co/tutorcatalog-api |
| Production | https://tutorhub.mindbricks.co/tutorcatalog-api |
courseScheduling Service
Description: Handles all scheduling: tutor availability, lesson slot management/booking, preliminary meeting scheduling for screened courses. Ensures schedule privacy (authenticated only).
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://tutorhub.prw.mindbricks.com/coursescheduling-api |
| Staging | https://tutorhub-stage.mindbricks.co/coursescheduling-api |
| Production | https://tutorhub.mindbricks.co/coursescheduling-api |
enrollmentManagement Service
Description: Handles enrollments (course booking, lesson/slot allocation, fulfillment/pre-check, and payment via Stripe) and refund workflow (strictly after first lesson only, auto approved, and Stripe-based). Exposes all enrollment/payment/refund status for admins, tutors, and students. All business state transitions are auditable for analytics and compliance.
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://tutorhub.prw.mindbricks.com/enrollmentmanagement-api |
| Staging | https://tutorhub-stage.mindbricks.co/enrollmentmanagement-api |
| Production | https://tutorhub.mindbricks.co/enrollmentmanagement-api |
platformAdmin Service
Description: No description provided.
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://tutorhub.prw.mindbricks.com/platformadmin-api |
| Staging | https://tutorhub-stage.mindbricks.co/platformadmin-api |
| Production | https://tutorhub.mindbricks.co/platformadmin-api |
messaging Service
Description: Real-time messaging service: student-tutor chat (bidirectional), admin-student warnings (one-way), admin-tutor communication (bidirectional). Uses RealtimeHub for WebSocket chat with persistence, typing, and read receipts.
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://tutorhub.prw.mindbricks.com/messaging-api |
| Staging | https://tutorhub-stage.mindbricks.co/messaging-api |
| Production | https://tutorhub.mindbricks.co/messaging-api |
agentHub Service
Description: AI Agent Hub
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://tutorhub.prw.mindbricks.com/agenthub-api |
| Staging | https://tutorhub-stage.mindbricks.co/agenthub-api |
| Production | https://tutorhub.mindbricks.co/agenthub-api |
Connect via MCP (Model Context Protocol)
All backend services in the Tutorhub project expose their Business APIs as MCP tools. These tools are aggregated by the MCP-BFF service into a single unified endpoint that external AI tools can connect to.
Unified MCP Endpoint
| Environment | StreamableHTTP (recommended) | SSE (legacy fallback) |
|---|---|---|
| Preview | https://tutorhub.prw.mindbricks.com/mcpbff-api/mcp |
https://tutorhub.prw.mindbricks.com/mcpbff-api/mcp/sse |
| Staging | https://tutorhub-stage.mindbricks.co/mcpbff-api/mcp |
https://tutorhub-stage.mindbricks.co/mcpbff-api/mcp/sse |
| Production | https://tutorhub.mindbricks.co/mcpbff-api/mcp |
https://tutorhub.mindbricks.co/mcpbff-api/mcp/sse |
Authentication
MCP connections require authentication via the Authorization header:
- API Key (recommended for AI agents):
Authorization: Bearer sk_mbx_your_api_key_hereAPI keys are long-lived and don’t expire like JWT tokens. Create one from the profile page. - JWT Token:
Authorization: Bearer {accessToken}Use a valid access token obtained from the login API.
OAuth is not supported for MCP connections at this time.
Connecting from Cursor
Add the following to your project’s .cursor/mcp.json:
{
"mcpServers": {
"tutorhub": {
"url": "https://tutorhub.prw.mindbricks.com/mcpbff-api/mcp",
"headers": {
"Authorization": "Bearer sk_mbx_your_api_key_here"
}
}
}
}
Connecting from Claude Desktop
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"tutorhub": {
"url": "https://tutorhub.prw.mindbricks.com/mcpbff-api/mcp",
"headers": {
"Authorization": "Bearer sk_mbx_your_api_key_here"
}
}
}
}
What’s Available
Once connected, the AI tool can discover and call all Business API tools from all services — CRUD operations, custom queries, file operations, and more. The MCP-BFF handles routing each tool call to the correct backend service and propagates your authentication context.
Conclusion
This documentation set provides a comprehensive guide for understanding and consuming the TutorHub Educational Platform backend, generated by the Mindbricks platform. It is structured to support both AI agents and human developers in navigating authentication, data access, service responsibilities, and system architecture.
To summarize:
- Start with the Auth Service to manage users, roles, sessions, and permissions.
- Use the BFF Service for optimized, read-only data queries and cross-service aggregation.
- Refer to the Business Services when you need to manage domain-specific data or perform direct CRUD operations.
Each service offers a complete set of documentation—REST API guides, event interface definitions, and design insights—to help you integrate efficiently and confidently.
Whether you are building a frontend application, configuring an automation agent, or simply exploring the architecture, this documentation is your primary reference for working with the backend of this project.
For environment-specific access, ensure you’re using the correct base URLs (Preview, Staging, Production), and coordinate with the project owner for any custom deployments.
Table of Contents
Getting Started
- Introduction: TutorHub Educational Platform
Frontend Prompts
- Project Introduction & Setup: Project Introduction & Setup
- Authentication Management: Authentication Management
- Verification Management: Verification Management
- Profile Management: Profile Management
- User Management: User Management
- MCP BFF Integration: MCP BFF Integration
- TutorCatalog Service: TutorCatalog Service
- CourseScheduling Service: CourseScheduling Service
- EnrollmentManagement Service: EnrollmentManagement Service
- EnrollmentManagement Service Enrollment Payment Flow: EnrollmentManagement Service Enrollment Payment Flow
- PlatformAdmin Service: PlatformAdmin Service
- Messaging Service: Messaging Service
- Messaging Service Realtime Hubs: Messaging Service Realtime Hubs
- AgentHub Service: AgentHub Service
Auth Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- user Design: Documentation
- userAvatarsFile Design: Documentation
Business APIs
- getUser API: Business API Design Specification -
Get User - updateUser API: Business API Design Specification -
Update User - updateProfile API: Business API Design Specification -
Update Profile - createUser API: Business API Design Specification -
Create User - deleteUser API: Business API Design Specification -
Delete User - archiveProfile API: Business API Design Specification -
Archive Profile - listUsers API: Business API Design Specification -
List Users - searchUsers API: Business API Design Specification -
Search Users - updateUserRole API: Business API Design Specification -
Update Userrole - updateUserPassword API: Business API Design Specification -
Update Userpassword - updateUserPasswordByAdmin API: Business API Design Specification -
Update Userpasswordbyadmin - getBriefUser API: Business API Design Specification -
Get Briefuser - streamTest API: Business API Design Specification -
Stream Test - registerUser API: Business API Design Specification -
Register User - applyAsTutor API: Business API Design Specification -
Apply Astutor - reviewTutorApplication API: Business API Design Specification -
Review Tutorapplication - getUserAvatarsFile API: Business API Design Specification -
Get Useravatarsfile - listUserAvatarsFiles API: Business API Design Specification -
List Useravatarsfiles - deleteUserAvatarsFile API: Business API Design Specification -
Delete Useravatarsfile
Database Buckets
- userAvatars Bucket: Database Bucket Design Specification -
userAvatars
TutorCatalog Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- tutorProfile Design: Documentation
- coursePack Design: Documentation
- courseMaterial Design: Documentation
- courseCategory Design: Documentation
Business APIs
- createTutorProfile API: Business API Design Specification -
Create Tutorprofile - updateTutorProfile API: Business API Design Specification -
Update Tutorprofile - getTutorProfile API: Business API Design Specification -
Get Tutorprofile - listTutorProfiles API: Business API Design Specification -
List Tutorprofiles - createCoursePack API: Business API Design Specification -
Create Coursepack - updateCoursePack API: Business API Design Specification -
Update Coursepack - deleteCoursePack API: Business API Design Specification -
Delete Coursepack - getCoursePack API: Business API Design Specification -
Get Coursepack - listCoursePacks API: Business API Design Specification -
List Coursepacks - createCourseMaterial API: Business API Design Specification -
Create Coursematerial - updateCourseMaterial API: Business API Design Specification -
Update Coursematerial - deleteCourseMaterial API: Business API Design Specification -
Delete Coursematerial - getCourseMaterial API: Business API Design Specification -
Get Coursematerial - listCourseMaterials API: Business API Design Specification -
List Coursematerials - createCourseCategory API: Business API Design Specification -
Create Coursecategory - updateCourseCategory API: Business API Design Specification -
Update Coursecategory - deleteCourseCategory API: Business API Design Specification -
Delete Coursecategory - getCourseCategory API: Business API Design Specification -
Get Coursecategory - listCourseCategories API: Business API Design Specification -
List Coursecategories - onTutorApplicationReviewed API: Business API Design Specification -
On Tutorapplicationreviewed - Service Library: Service Library -
tutorCatalog
CourseScheduling Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- availability Design: Documentation
- lessonSlot Design: Documentation
- preliminaryMeeting Design: Documentation
Business APIs
- createAvailability API: Business API Design Specification -
Create Availability - updateAvailability API: Business API Design Specification -
Update Availability - deleteAvailability API: Business API Design Specification -
Delete Availability - getAvailability API: Business API Design Specification -
Get Availability - listAvailabilities API: Business API Design Specification -
List Availabilities - createLessonSlot API: Business API Design Specification -
Create Lessonslot - updateLessonSlot API: Business API Design Specification -
Update Lessonslot - deleteLessonSlot API: Business API Design Specification -
Delete Lessonslot - getLessonSlot API: Business API Design Specification -
Get Lessonslot - listLessonSlots API: Business API Design Specification -
List Lessonslots - createPreliminaryMeeting API: Business API Design Specification -
Create Preliminarymeeting - updatePreliminaryMeeting API: Business API Design Specification -
Update Preliminarymeeting - getPreliminaryMeeting API: Business API Design Specification -
Get Preliminarymeeting - listPreliminaryMeetings API: Business API Design Specification -
List Preliminarymeetings - Service Library: Service Library -
courseScheduling
EnrollmentManagement Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- enrollment Design: Documentation
- refundRequest Design: Documentation
- sys_enrollmentPayment Design: Documentation
- sys_paymentCustomer Design: Documentation
- sys_paymentMethod Design: Documentation
Business APIs
- createEnrollment API: Business API Design Specification -
Create Enrollment - getEnrollment API: Business API Design Specification -
Get Enrollment - listEnrollments API: Business API Design Specification -
List Enrollments - createRefundRequest API: Business API Design Specification -
Create Refundrequest - getRefundRequest API: Business API Design Specification -
Get Refundrequest - listRefundRequests API: Business API Design Specification -
List Refundrequests - updateRefundRequest API: Business API Design Specification -
Update Refundrequest - cancelEnrollment API: Business API Design Specification -
Cancel Enrollment - adminRefundEnrollment API: Business API Design Specification -
Admin Refundenrollment - cascadeTutorBan API: Business API Design Specification -
Cascade Tutorban - cascadeCourseRemoval API: Business API Design Specification -
Cascade Courseremoval - cleanupPendingEnrollments API: Business API Design Specification -
Cleanup Pendingenrollments - checkEnrollmentCompletion API: Business API Design Specification -
Check Enrollmentcompletion - getEnrollmentPayment API: Business API Design Specification -
Get Enrollmentpayment - listEnrollmentPayments API: Business API Design Specification -
List Enrollmentpayments - createEnrollmentPayment API: Business API Design Specification -
Create Enrollmentpayment - updateEnrollmentPayment API: Business API Design Specification -
Update Enrollmentpayment - deleteEnrollmentPayment API: Business API Design Specification -
Delete Enrollmentpayment - getEnrollmentPaymentByOrderId API: Business API Design Specification -
Get Enrollmentpaymentbyorderid - getEnrollmentPaymentByPaymentId API: Business API Design Specification -
Get Enrollmentpaymentbypaymentid - startEnrollmentPayment API: Business API Design Specification -
Start Enrollmentpayment - refreshEnrollmentPayment API: Business API Design Specification -
Refresh Enrollmentpayment - callbackEnrollmentPayment API: Business API Design Specification -
Callback Enrollmentpayment - getPaymentCustomerByUserId API: Business API Design Specification -
Get Paymentcustomerbyuserid - listPaymentCustomers API: Business API Design Specification -
List Paymentcustomers - listPaymentCustomerMethods API: Business API Design Specification -
List Paymentcustomermethods - Service Library: Service Library -
enrollmentManagement
PlatformAdmin Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- adminIssue Design: Documentation
- adminModerationAction Design: Documentation
- adminAnalyticsReport Design: Documentation
Business APIs
- createAdminIssue API: Business API Design Specification -
Create Adminissue - updateAdminIssue API: Business API Design Specification -
Update Adminissue - getAdminIssue API: Business API Design Specification -
Get Adminissue - listAdminIssues API: Business API Design Specification -
List Adminissues - createAdminModerationAction API: Business API Design Specification -
Create Adminmoderationaction - getAdminModerationAction API: Business API Design Specification -
Get Adminmoderationaction - listAdminModerationActions API: Business API Design Specification -
List Adminmoderationactions - createAdminAnalyticsReport API: Business API Design Specification -
Create Adminanalyticsreport - getAdminAnalyticsReport API: Business API Design Specification -
Get Adminanalyticsreport - listAdminAnalyticsReports API: Business API Design Specification -
List Adminanalyticsreports - listMyIssues API: Business API Design Specification -
List Myissues
Messaging Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- conversation Design: Documentation
- chatMessage Design: Documentation
- chatModeration Design: Documentation
Business APIs
- createConversation API: Business API Design Specification -
Create Conversation - getConversation API: Business API Design Specification -
Get Conversation - listMyConversations API: Business API Design Specification -
List Myconversations - sendSystemMessage API: Business API Design Specification -
Send Systemmessage - listChatMessages API: Business API Design Specification -
List Chatmessages - getChatMessage API: Business API Design Specification -
Get Chatmessage - deleteChatMessage API: Business API Design Specification -
Delete Chatmessage - updateChatMessage API: Business API Design Specification -
Update Chatmessage
Realtime Hubs
- chat Hub: Realtime Hub Design Specification -
chat
AgentHub Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- sys_agentOverride Design: Documentation
- sys_agentExecution Design: Documentation
- sys_toolCatalog Design: Documentation
Business APIs
- getAgentOverride API: Business API Design Specification -
Get Agentoverride - listAgentOverrides API: Business API Design Specification -
List Agentoverrides - updateAgentOverride API: Business API Design Specification -
Update Agentoverride - createAgentOverride API: Business API Design Specification -
Create Agentoverride - deleteAgentOverride API: Business API Design Specification -
Delete Agentoverride - listToolCatalog API: Business API Design Specification -
List Toolcatalog - getToolCatalogEntry API: Business API Design Specification -
Get Toolcatalogentry - listAgentExecutions API: Business API Design Specification -
List Agentexecutions - getAgentExecution API: Business API Design Specification -
Get Agentexecution
Bff Service
- Service Design: —
- REST API Guide: Documentation
- Event Guide: Documentation
Notification Service
- Service Design: Provider-specific errors include stack traces
- REST API Guide: Documentation
- Event Guide: Documentation
LLM Documents
- Documentation Index: Documentation
- Complete Documentation: Documentation
- REST API Reference: Documentation
- Frontend Prompts: Documentation
API Endpoints Summary
tutorhub-auth-service Service
POST /auth-api/getUser- getUserPOST /auth-api/updateUser- updateUserPOST /auth-api/updateProfile- updateProfilePOST /auth-api/createUser- createUserPOST /auth-api/deleteUser- deleteUserPOST /auth-api/archiveProfile- archiveProfilePOST /auth-api/listUsers- listUsersPOST /auth-api/searchUsers- searchUsersPOST /auth-api/updateUserRole- updateUserRolePOST /auth-api/updateUserPassword- updateUserPasswordPOST /auth-api/updateUserPasswordByAdmin- updateUserPasswordByAdminPOST /auth-api/getBriefUser- getBriefUserPOST /auth-api/streamTest- streamTestPOST /auth-api/registerUser- registerUserPOST /auth-api/applyAsTutor- applyAsTutorPOST /auth-api/reviewTutorApplication- reviewTutorApplicationPOST /auth-api/getUserAvatarsFile- getUserAvatarsFilePOST /auth-api/listUserAvatarsFiles- listUserAvatarsFilesPOST /auth-api/deleteUserAvatarsFile- deleteUserAvatarsFilePOST /auth-api/_fetchListUserAvatarsFile- _fetchListUserAvatarsFile
tutorhub-tutorcatalog-service Service
POST /tutorCatalog-api/createTutorProfile- createTutorProfilePOST /tutorCatalog-api/updateTutorProfile- updateTutorProfilePOST /tutorCatalog-api/getTutorProfile- getTutorProfilePOST /tutorCatalog-api/listTutorProfiles- listTutorProfilesPOST /tutorCatalog-api/createCoursePack- createCoursePackPOST /tutorCatalog-api/updateCoursePack- updateCoursePackPOST /tutorCatalog-api/deleteCoursePack- deleteCoursePackPOST /tutorCatalog-api/getCoursePack- getCoursePackPOST /tutorCatalog-api/listCoursePacks- listCoursePacksPOST /tutorCatalog-api/createCourseMaterial- createCourseMaterialPOST /tutorCatalog-api/updateCourseMaterial- updateCourseMaterialPOST /tutorCatalog-api/deleteCourseMaterial- deleteCourseMaterialPOST /tutorCatalog-api/getCourseMaterial- getCourseMaterialPOST /tutorCatalog-api/listCourseMaterials- listCourseMaterialsPOST /tutorCatalog-api/createCourseCategory- createCourseCategoryPOST /tutorCatalog-api/updateCourseCategory- updateCourseCategoryPOST /tutorCatalog-api/deleteCourseCategory- deleteCourseCategoryPOST /tutorCatalog-api/getCourseCategory- getCourseCategoryPOST /tutorCatalog-api/listCourseCategories- listCourseCategoriesPOST /tutorCatalog-api/onTutorApplicationReviewed- onTutorApplicationReviewedPOST /tutorCatalog-api/_fetchListTutorProfile- _fetchListTutorProfilePOST /tutorCatalog-api/_fetchListCoursePack- _fetchListCoursePackPOST /tutorCatalog-api/_fetchListCourseMaterial- _fetchListCourseMaterialPOST /tutorCatalog-api/_fetchListCourseCategory- _fetchListCourseCategory
tutorhub-coursescheduling-service Service
POST /courseScheduling-api/createAvailability- createAvailabilityPOST /courseScheduling-api/updateAvailability- updateAvailabilityPOST /courseScheduling-api/deleteAvailability- deleteAvailabilityPOST /courseScheduling-api/getAvailability- getAvailabilityPOST /courseScheduling-api/listAvailabilities- listAvailabilitiesPOST /courseScheduling-api/createLessonSlot- createLessonSlotPOST /courseScheduling-api/updateLessonSlot- updateLessonSlotPOST /courseScheduling-api/deleteLessonSlot- deleteLessonSlotPOST /courseScheduling-api/getLessonSlot- getLessonSlotPOST /courseScheduling-api/listLessonSlots- listLessonSlotsPOST /courseScheduling-api/createPreliminaryMeeting- createPreliminaryMeetingPOST /courseScheduling-api/updatePreliminaryMeeting- updatePreliminaryMeetingPOST /courseScheduling-api/getPreliminaryMeeting- getPreliminaryMeetingPOST /courseScheduling-api/listPreliminaryMeetings- listPreliminaryMeetingsPOST /courseScheduling-api/_fetchListAvailability- _fetchListAvailabilityPOST /courseScheduling-api/_fetchListLessonSlot- _fetchListLessonSlotPOST /courseScheduling-api/_fetchListPreliminaryMeeting- _fetchListPreliminaryMeeting
tutorhub-enrollmentmanagement-service Service
POST /enrollmentManagement-api/createEnrollment- createEnrollmentPOST /enrollmentManagement-api/getEnrollment- getEnrollmentPOST /enrollmentManagement-api/listEnrollments- listEnrollmentsPOST /enrollmentManagement-api/createRefundRequest- createRefundRequestPOST /enrollmentManagement-api/getRefundRequest- getRefundRequestPOST /enrollmentManagement-api/listRefundRequests- listRefundRequestsPOST /enrollmentManagement-api/updateRefundRequest- updateRefundRequestPOST /enrollmentManagement-api/cancelEnrollment- cancelEnrollmentPOST /enrollmentManagement-api/adminRefundEnrollment- adminRefundEnrollmentPOST /enrollmentManagement-api/cascadeTutorBan- cascadeTutorBanPOST /enrollmentManagement-api/cascadeCourseRemoval- cascadeCourseRemovalPOST /enrollmentManagement-api/cleanupPendingEnrollments- cleanupPendingEnrollmentsPOST /enrollmentManagement-api/checkEnrollmentCompletion- checkEnrollmentCompletionPOST /enrollmentManagement-api/getEnrollmentPayment- getEnrollmentPaymentPOST /enrollmentManagement-api/listEnrollmentPayments- listEnrollmentPaymentsPOST /enrollmentManagement-api/createEnrollmentPayment- createEnrollmentPaymentPOST /enrollmentManagement-api/updateEnrollmentPayment- updateEnrollmentPaymentPOST /enrollmentManagement-api/deleteEnrollmentPayment- deleteEnrollmentPaymentPOST /enrollmentManagement-api/getEnrollmentPaymentByOrderId- getEnrollmentPaymentByOrderIdPOST /enrollmentManagement-api/getEnrollmentPaymentByPaymentId- getEnrollmentPaymentByPaymentIdPOST /enrollmentManagement-api/startEnrollmentPayment- startEnrollmentPaymentPOST /enrollmentManagement-api/refreshEnrollmentPayment- refreshEnrollmentPaymentPOST /enrollmentManagement-api/callbackEnrollmentPayment- callbackEnrollmentPaymentPOST /enrollmentManagement-api/getPaymentCustomerByUserId- getPaymentCustomerByUserIdPOST /enrollmentManagement-api/listPaymentCustomers- listPaymentCustomersPOST /enrollmentManagement-api/listPaymentCustomerMethods- listPaymentCustomerMethodsPOST /enrollmentManagement-api/_fetchListEnrollment- _fetchListEnrollmentPOST /enrollmentManagement-api/_fetchListRefundRequest- _fetchListRefundRequestPOST /enrollmentManagement-api/_fetchListSys_enrollmentPayment- _fetchListSys_enrollmentPaymentPOST /enrollmentManagement-api/_fetchListSys_paymentCustomer- _fetchListSys_paymentCustomerPOST /enrollmentManagement-api/_fetchListSys_paymentMethod- _fetchListSys_paymentMethod
tutorhub-platformadmin-service Service
POST /platformAdmin-api/createAdminIssue- createAdminIssuePOST /platformAdmin-api/updateAdminIssue- updateAdminIssuePOST /platformAdmin-api/getAdminIssue- getAdminIssuePOST /platformAdmin-api/listAdminIssues- listAdminIssuesPOST /platformAdmin-api/createAdminModerationAction- createAdminModerationActionPOST /platformAdmin-api/getAdminModerationAction- getAdminModerationActionPOST /platformAdmin-api/listAdminModerationActions- listAdminModerationActionsPOST /platformAdmin-api/createAdminAnalyticsReport- createAdminAnalyticsReportPOST /platformAdmin-api/getAdminAnalyticsReport- getAdminAnalyticsReportPOST /platformAdmin-api/listAdminAnalyticsReports- listAdminAnalyticsReportsPOST /platformAdmin-api/listMyIssues- listMyIssuesPOST /platformAdmin-api/_fetchListAdminIssue- _fetchListAdminIssuePOST /platformAdmin-api/_fetchListAdminModerationAction- _fetchListAdminModerationActionPOST /platformAdmin-api/_fetchListAdminAnalyticsReport- _fetchListAdminAnalyticsReport
tutorhub-messaging-service Service
POST /messaging-api/createConversation- createConversationPOST /messaging-api/getConversation- getConversationPOST /messaging-api/listMyConversations- listMyConversationsPOST /messaging-api/sendSystemMessage- sendSystemMessagePOST /messaging-api/listChatMessages- listChatMessagesPOST /messaging-api/getChatMessage- getChatMessagePOST /messaging-api/deleteChatMessage- deleteChatMessagePOST /messaging-api/updateChatMessage- updateChatMessagePOST /messaging-api/_fetchListConversation- _fetchListConversationPOST /messaging-api/_fetchListChatMessage- _fetchListChatMessagePOST /messaging-api/_fetchListChatModeration- _fetchListChatModeration
tutorhub-agenthub-service Service
POST /agentHub-api/getAgentOverride- getAgentOverridePOST /agentHub-api/listAgentOverrides- listAgentOverridesPOST /agentHub-api/updateAgentOverride- updateAgentOverridePOST /agentHub-api/createAgentOverride- createAgentOverridePOST /agentHub-api/deleteAgentOverride- deleteAgentOverridePOST /agentHub-api/listToolCatalog- listToolCatalogPOST /agentHub-api/getToolCatalogEntry- getToolCatalogEntryPOST /agentHub-api/listAgentExecutions- listAgentExecutionsPOST /agentHub-api/getAgentExecution- getAgentExecutionPOST /agentHub-api/_fetchListSys_agentOverride- _fetchListSys_agentOverridePOST /agentHub-api/_fetchListSys_agentExecution- _fetchListSys_agentExecutionPOST /agentHub-api/_fetchListSys_toolCatalog- _fetchListSys_toolCatalog
Getting Started
- Authentication: Start with the Auth Service to register and authenticate users
- Data Queries: Use the BFF Service for optimized read-only data queries
- Business Operations: Use individual business services for create/update/delete operations
Additional Resources
- Full documentation: …/intro.html
- Search: …/search.html
Generated by Mindbricks Genesis Engine