# AuteurLabb Networking Platform > AuteurLabb is a networking platform that connects filmmakers, studios, investors, and supporters to collaborate on film projects with secure access and role-based workflows. 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](/document/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](/document/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](/document/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 # AuteurLabb Networking Platform Version : 1.0.71 AuteurLabb is a networking platform that connects filmmakers, studios, investors, and supporters to collaborate on film projects with secure access and role-based workflows. ## How to Use Project Documents The `Auteurlabb` 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://auteurlabb.prw.mindbricks.com/auth-api` | | **Staging** | `https://auteurlabb-stage.mindbricks.co/auth-api` | | **Production** | `https://auteurlabb.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 `Auteurlabb` 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](/document/docs/auth-service/rest-api-guide.html) * **Event Guide** – helpful for event-driven or cross-service integrations [Auth Event Guide](/document/docs/auth-service/event-guide.html) * **Service Design Document** – overall structure, patterns, and logic [Auth Service Design](/document/docs/auth-service/service-design.html) > **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](/document/docs/bff-service/rest-api-guide.html) * **Event Guide** – syncing strategies across replicas [BFF Event Guide](/document/docs/bff-service/event-guide.html) * **Service Design** – aggregation patterns and index structures [BFF Service Design](/document/docs/bff-service/service-design.html) > **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 `AuteurLabb Networking 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](#using-the-bff-backend-for-frontend-service). ### Available Business Services ### projectPortfolio Service **Description:** Handles the lifecycle of film projects and access management, allowing filmmakers & studios to submit, update, publish (public/private), withdraw projects, and manage project access for investors/bookmarks. Enforces admin approval & efficient searching/filtering. Connects projects to user (and optionally studio) ownership. **Documentation:** * [REST API Guide](/document/docs/projectPortfolio-service/rest-api-guide.html) * [Event Guide](/document/docs/projectPortfolio-service/event-guide.html) * [Service Design](/document/docs/projectPortfolio-service/service-design.html) **Base URL Examples:** | Environment | URL | |-------------|---------------------| | **Preview** | `https://auteurlabb.prw.mindbricks.com/projectportfolio-api` | | **Staging** | `https://auteurlabb-stage.mindbricks.co/projectportfolio-api` | | **Production** | `https://auteurlabb.mindbricks.co/projectportfolio-api` | ### messagingCenter Service **Description:** Facilitates secure messaging between filmmakers, studios, and investors, enabling message threads, moderation, and notifications for industry collaborations. **Documentation:** * [REST API Guide](/document/docs/messagingCenter-service/rest-api-guide.html) * [Event Guide](/document/docs/messagingCenter-service/event-guide.html) * [Service Design](/document/docs/messagingCenter-service/service-design.html) **Base URL Examples:** | Environment | URL | |-------------|---------------------| | **Preview** | `https://auteurlabb.prw.mindbricks.com/messagingcenter-api` | | **Staging** | `https://auteurlabb-stage.mindbricks.co/messagingcenter-api` | | **Production** | `https://auteurlabb.mindbricks.co/messagingcenter-api` | ### moderationAdmin Service **Description:** Handles approval workflows for studios, investors, and projects; facilitates platform content moderation, user suspensions, and records all related admin actions for audit and compliance. **Documentation:** * [REST API Guide](/document/docs/moderationAdmin-service/rest-api-guide.html) * [Event Guide](/document/docs/moderationAdmin-service/event-guide.html) * [Service Design](/document/docs/moderationAdmin-service/service-design.html) **Base URL Examples:** | Environment | URL | |-------------|---------------------| | **Preview** | `https://auteurlabb.prw.mindbricks.com/moderationadmin-api` | | **Staging** | `https://auteurlabb-stage.mindbricks.co/moderationadmin-api` | | **Production** | `https://auteurlabb.mindbricks.co/moderationadmin-api` | ### agentHub Service **Description:** AI Agent Hub **Documentation:** * [REST API Guide](/document/docs/agentHub-service/rest-api-guide.html) * [Event Guide](/document/docs/agentHub-service/event-guide.html) * [Service Design](/document/docs/agentHub-service/service-design.html) **Base URL Examples:** | Environment | URL | |-------------|---------------------| | **Preview** | `https://auteurlabb.prw.mindbricks.com/agenthub-api` | | **Staging** | `https://auteurlabb-stage.mindbricks.co/agenthub-api` | | **Production** | `https://auteurlabb.mindbricks.co/agenthub-api` | ## Connect via MCP (Model Context Protocol) All backend services in the `Auteurlabb` 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://auteurlabb.prw.mindbricks.com/mcpbff-api/mcp` | `https://auteurlabb.prw.mindbricks.com/mcpbff-api/mcp/sse` | | **Staging** | `https://auteurlabb-stage.mindbricks.co/mcpbff-api/mcp` | `https://auteurlabb-stage.mindbricks.co/mcpbff-api/mcp/sse` | | **Production** | `https://auteurlabb.mindbricks.co/mcpbff-api/mcp` | `https://auteurlabb.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_here` API 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`: ```json { "mcpServers": { "auteurlabb": { "url": "https://auteurlabb.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`): ```json { "mcpServers": { "auteurlabb": { "url": "https://auteurlabb.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 `AuteurLabb Networking 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](/document/docs/intro.html): AuteurLabb Networking Platform ### Frontend Prompts - [Project Introduction & Setup](/document/docs/frontend-prompts/frontend-prompt-1-projectIntroduction.html): Project Introduction & Setup - [Authentication Management](/document/docs/frontend-prompts/frontend-prompt-2-authManagement.html): Authentication Management - [Verification Management](/document/docs/frontend-prompts/frontend-prompt-3-verification.html): Verification Management - [Profile Management](/document/docs/frontend-prompts/frontend-prompt-4-profile.html): Profile Management - [User Management](/document/docs/frontend-prompts/frontend-prompt-5-userManagement.html): User Management - [MCP BFF Integration](/document/docs/frontend-prompts/frontend-prompt-6-mcpbffIntegration.html): MCP BFF Integration - [ProjectPortfolio Service](/document/docs/frontend-prompts/frontend-prompt-7-projectPortfolioService.html): ProjectPortfolio Service - [MessagingCenter Service](/document/docs/frontend-prompts/frontend-prompt-8-messagingCenterService.html): MessagingCenter Service - [ModerationAdmin Service](/document/docs/frontend-prompts/frontend-prompt-9-moderationAdminService.html): ModerationAdmin Service - [AgentHub Service](/document/docs/frontend-prompts/frontend-prompt-10-agentHubService.html): AgentHub Service ### Auth Service - [Service Design](/document/docs/auth-service/service-design.html): Service Design Specification - [REST API Guide](/document/docs/auth-service/rest-api-guide.html): REST API GUIDE - [Event Guide](/document/docs/auth-service/event-guide.html): . #### Data Objects - [user Design](/document/docs/auth-service/user-design.html): Documentation - [userAvatarsFile Design](/document/docs/auth-service/userAvatarsFile-design.html): Documentation #### Business APIs - [getUser API](/document/docs/auth-service/business-api/getUser-api-design.html): Business API Design Specification - `Get User` - [updateUser API](/document/docs/auth-service/business-api/updateUser-api-design.html): Business API Design Specification - `Update User` - [updateProfile API](/document/docs/auth-service/business-api/updateProfile-api-design.html): Business API Design Specification - `Update Profile` - [createUser API](/document/docs/auth-service/business-api/createUser-api-design.html): Business API Design Specification - `Create User` - [deleteUser API](/document/docs/auth-service/business-api/deleteUser-api-design.html): Business API Design Specification - `Delete User` - [archiveProfile API](/document/docs/auth-service/business-api/archiveProfile-api-design.html): Business API Design Specification - `Archive Profile` - [listUsers API](/document/docs/auth-service/business-api/listUsers-api-design.html): Business API Design Specification - `List Users` - [searchUsers API](/document/docs/auth-service/business-api/searchUsers-api-design.html): Business API Design Specification - `Search Users` - [updateUserRole API](/document/docs/auth-service/business-api/updateUserRole-api-design.html): Business API Design Specification - `Update Userrole` - [updateUserPassword API](/document/docs/auth-service/business-api/updateUserPassword-api-design.html): Business API Design Specification - `Update Userpassword` - [updateUserPasswordByAdmin API](/document/docs/auth-service/business-api/updateUserPasswordByAdmin-api-design.html): Business API Design Specification - `Update Userpasswordbyadmin` - [getBriefUser API](/document/docs/auth-service/business-api/getBriefUser-api-design.html): Business API Design Specification - `Get Briefuser` - [streamTest API](/document/docs/auth-service/business-api/streamTest-api-design.html): Business API Design Specification - `Stream Test` - [registerUser API](/document/docs/auth-service/business-api/registerUser-api-design.html): Business API Design Specification - `Register User` - [getUserAvatarsFile API](/document/docs/auth-service/business-api/getUserAvatarsFile-api-design.html): Business API Design Specification - `Get Useravatarsfile` - [listUserAvatarsFiles API](/document/docs/auth-service/business-api/listUserAvatarsFiles-api-design.html): Business API Design Specification - `List Useravatarsfiles` - [deleteUserAvatarsFile API](/document/docs/auth-service/business-api/deleteUserAvatarsFile-api-design.html): Business API Design Specification - `Delete Useravatarsfile` #### Database Buckets - [userAvatars Bucket](/document/docs/auth-service/db-buckets/userAvatars-bucket-design.html): Database Bucket Design Specification - `userAvatars` ### ProjectPortfolio Service - [Service Design](/document/docs/projectPortfolio-service/service-design.html): Service Design Specification - [REST API Guide](/document/docs/projectPortfolio-service/rest-api-guide.html): REST API GUIDE - [Event Guide](/document/docs/projectPortfolio-service/event-guide.html): . #### Data Objects - [filmProject Design](/document/docs/projectPortfolio-service/filmProject-design.html): Documentation - [accessGrant Design](/document/docs/projectPortfolio-service/accessGrant-design.html): Documentation - [projectBookmark Design](/document/docs/projectPortfolio-service/projectBookmark-design.html): Documentation - [investmentOffer Design](/document/docs/projectPortfolio-service/investmentOffer-design.html): Documentation - [userFollow Design](/document/docs/projectPortfolio-service/userFollow-design.html): Documentation #### Business APIs - [createFilmProject API](/document/docs/projectPortfolio-service/business-api/createFilmProject-api-design.html): Business API Design Specification - `Create Filmproject` - [updateFilmProject API](/document/docs/projectPortfolio-service/business-api/updateFilmProject-api-design.html): Business API Design Specification - `Update Filmproject` - [getFilmProject API](/document/docs/projectPortfolio-service/business-api/getFilmProject-api-design.html): Business API Design Specification - `Get Filmproject` - [listFilmProjects API](/document/docs/projectPortfolio-service/business-api/listFilmProjects-api-design.html): Business API Design Specification - `List Filmprojects` - [createAccessGrant API](/document/docs/projectPortfolio-service/business-api/createAccessGrant-api-design.html): Business API Design Specification - `Create Accessgrant` - [updateAccessGrant API](/document/docs/projectPortfolio-service/business-api/updateAccessGrant-api-design.html): Business API Design Specification - `Update Accessgrant` - [getAccessGrant API](/document/docs/projectPortfolio-service/business-api/getAccessGrant-api-design.html): Business API Design Specification - `Get Accessgrant` - [listAccessGrants API](/document/docs/projectPortfolio-service/business-api/listAccessGrants-api-design.html): Business API Design Specification - `List Accessgrants` - [createBookmark API](/document/docs/projectPortfolio-service/business-api/createBookmark-api-design.html): Business API Design Specification - `Create Bookmark` - [deleteBookmark API](/document/docs/projectPortfolio-service/business-api/deleteBookmark-api-design.html): Business API Design Specification - `Delete Bookmark` - [listBookmarks API](/document/docs/projectPortfolio-service/business-api/listBookmarks-api-design.html): Business API Design Specification - `List Bookmarks` - [createInvestmentOffer API](/document/docs/projectPortfolio-service/business-api/createInvestmentOffer-api-design.html): Business API Design Specification - `Create Investmentoffer` - [respondToInvestmentOffer API](/document/docs/projectPortfolio-service/business-api/respondToInvestmentOffer-api-design.html): Business API Design Specification - `Respond Toinvestmentoffer` - [listInvestmentOffers API](/document/docs/projectPortfolio-service/business-api/listInvestmentOffers-api-design.html): Business API Design Specification - `List Investmentoffers` - [withdrawInvestmentOffer API](/document/docs/projectPortfolio-service/business-api/withdrawInvestmentOffer-api-design.html): Business API Design Specification - `Withdraw Investmentoffer` - [followUser API](/document/docs/projectPortfolio-service/business-api/followUser-api-design.html): Business API Design Specification - `Follow User` - [unfollowUser API](/document/docs/projectPortfolio-service/business-api/unfollowUser-api-design.html): Business API Design Specification - `Unfollow User` - [listUserFollows API](/document/docs/projectPortfolio-service/business-api/listUserFollows-api-design.html): Business API Design Specification - `List Userfollows` - [Service Library](/document/docs/projectPortfolio-service/service-library.html): Service Library - `projectPortfolio` ### MessagingCenter Service - [Service Design](/document/docs/messagingCenter-service/service-design.html): Service Design Specification - [REST API Guide](/document/docs/messagingCenter-service/rest-api-guide.html): REST API GUIDE - [Event Guide](/document/docs/messagingCenter-service/event-guide.html): . #### Data Objects - [messageThread Design](/document/docs/messagingCenter-service/messageThread-design.html): Documentation - [message Design](/document/docs/messagingCenter-service/message-design.html): Documentation #### Business APIs - [createMessageThread API](/document/docs/messagingCenter-service/business-api/createMessageThread-api-design.html): Business API Design Specification - `Create Messagethread` - [getMessageThread API](/document/docs/messagingCenter-service/business-api/getMessageThread-api-design.html): Business API Design Specification - `Get Messagethread` - [listMessageThreads API](/document/docs/messagingCenter-service/business-api/listMessageThreads-api-design.html): Business API Design Specification - `List Messagethreads` - [updateMessageThread API](/document/docs/messagingCenter-service/business-api/updateMessageThread-api-design.html): Business API Design Specification - `Update Messagethread` - [createMessage API](/document/docs/messagingCenter-service/business-api/createMessage-api-design.html): Business API Design Specification - `Create Message` - [getMessage API](/document/docs/messagingCenter-service/business-api/getMessage-api-design.html): Business API Design Specification - `Get Message` - [listMessages API](/document/docs/messagingCenter-service/business-api/listMessages-api-design.html): Business API Design Specification - `List Messages` - [updateMessage API](/document/docs/messagingCenter-service/business-api/updateMessage-api-design.html): Business API Design Specification - `Update Message` - [deleteMessage API](/document/docs/messagingCenter-service/business-api/deleteMessage-api-design.html): Business API Design Specification - `Delete Message` - [Service Library](/document/docs/messagingCenter-service/service-library.html): Service Library - `messagingCenter` ### ModerationAdmin Service - [Service Design](/document/docs/moderationAdmin-service/service-design.html): Service Design Specification - [REST API Guide](/document/docs/moderationAdmin-service/rest-api-guide.html): REST API GUIDE - [Event Guide](/document/docs/moderationAdmin-service/event-guide.html): . #### Data Objects - [approvalRequest Design](/document/docs/moderationAdmin-service/approvalRequest-design.html): Documentation - [reportLog Design](/document/docs/moderationAdmin-service/reportLog-design.html): Documentation - [suspensionRecord Design](/document/docs/moderationAdmin-service/suspensionRecord-design.html): Documentation - [auditLog Design](/document/docs/moderationAdmin-service/auditLog-design.html): Documentation #### Business APIs - [createApprovalRequest API](/document/docs/moderationAdmin-service/business-api/createApprovalRequest-api-design.html): Business API Design Specification - `Create Approvalrequest` - [reviewApprovalRequest API](/document/docs/moderationAdmin-service/business-api/reviewApprovalRequest-api-design.html): Business API Design Specification - `Review Approvalrequest` - [getApprovalRequest API](/document/docs/moderationAdmin-service/business-api/getApprovalRequest-api-design.html): Business API Design Specification - `Get Approvalrequest` - [listApprovalRequests API](/document/docs/moderationAdmin-service/business-api/listApprovalRequests-api-design.html): Business API Design Specification - `List Approvalrequests` - [createReportLog API](/document/docs/moderationAdmin-service/business-api/createReportLog-api-design.html): Business API Design Specification - `Create Reportlog` - [reviewReportLog API](/document/docs/moderationAdmin-service/business-api/reviewReportLog-api-design.html): Business API Design Specification - `Review Reportlog` - [getReportLog API](/document/docs/moderationAdmin-service/business-api/getReportLog-api-design.html): Business API Design Specification - `Get Reportlog` - [listReportLogs API](/document/docs/moderationAdmin-service/business-api/listReportLogs-api-design.html): Business API Design Specification - `List Reportlogs` - [createSuspensionRecord API](/document/docs/moderationAdmin-service/business-api/createSuspensionRecord-api-design.html): Business API Design Specification - `Create Suspensionrecord` - [liftSuspensionRecord API](/document/docs/moderationAdmin-service/business-api/liftSuspensionRecord-api-design.html): Business API Design Specification - `Lift Suspensionrecord` - [getSuspensionRecord API](/document/docs/moderationAdmin-service/business-api/getSuspensionRecord-api-design.html): Business API Design Specification - `Get Suspensionrecord` - [listSuspensionRecords API](/document/docs/moderationAdmin-service/business-api/listSuspensionRecords-api-design.html): Business API Design Specification - `List Suspensionrecords` - [createAuditLog API](/document/docs/moderationAdmin-service/business-api/createAuditLog-api-design.html): Business API Design Specification - `Create Auditlog` - [getAuditLog API](/document/docs/moderationAdmin-service/business-api/getAuditLog-api-design.html): Business API Design Specification - `Get Auditlog` - [listAuditLogs API](/document/docs/moderationAdmin-service/business-api/listAuditLogs-api-design.html): Business API Design Specification - `List Auditlogs` ### AgentHub Service - [Service Design](/document/docs/agentHub-service/service-design.html): Service Design Specification - [REST API Guide](/document/docs/agentHub-service/rest-api-guide.html): REST API GUIDE - [Event Guide](/document/docs/agentHub-service/event-guide.html): . #### Data Objects - [sys_agentOverride Design](/document/docs/agentHub-service/sys_agentOverride-design.html): Documentation - [sys_agentExecution Design](/document/docs/agentHub-service/sys_agentExecution-design.html): Documentation - [sys_toolCatalog Design](/document/docs/agentHub-service/sys_toolCatalog-design.html): Documentation #### Business APIs - [getAgentOverride API](/document/docs/agentHub-service/business-api/getAgentOverride-api-design.html): Business API Design Specification - `Get Agentoverride` - [listAgentOverrides API](/document/docs/agentHub-service/business-api/listAgentOverrides-api-design.html): Business API Design Specification - `List Agentoverrides` - [updateAgentOverride API](/document/docs/agentHub-service/business-api/updateAgentOverride-api-design.html): Business API Design Specification - `Update Agentoverride` - [createAgentOverride API](/document/docs/agentHub-service/business-api/createAgentOverride-api-design.html): Business API Design Specification - `Create Agentoverride` - [deleteAgentOverride API](/document/docs/agentHub-service/business-api/deleteAgentOverride-api-design.html): Business API Design Specification - `Delete Agentoverride` - [listToolCatalog API](/document/docs/agentHub-service/business-api/listToolCatalog-api-design.html): Business API Design Specification - `List Toolcatalog` - [getToolCatalogEntry API](/document/docs/agentHub-service/business-api/getToolCatalogEntry-api-design.html): Business API Design Specification - `Get Toolcatalogentry` - [listAgentExecutions API](/document/docs/agentHub-service/business-api/listAgentExecutions-api-design.html): Business API Design Specification - `List Agentexecutions` - [getAgentExecution API](/document/docs/agentHub-service/business-api/getAgentExecution-api-design.html): Business API Design Specification - `Get Agentexecution` ### Bff Service - [Service Design](/document/docs/bff-service/service-design.html): --- - [REST API Guide](/document/docs/bff-service/rest-api-guide.html): Documentation - [Event Guide](/document/docs/bff-service/event-guide.html): Documentation ### Notification Service - [Service Design](/document/docs/notification-service/service-design.html): Provider-specific errors include stack traces - [REST API Guide](/document/docs/notification-service/rest-api-guide.html): Documentation - [Event Guide](/document/docs/notification-service/event-guide.html): Documentation ### LLM Documents - [Documentation Index](/document/docs/llm/llms.html): Documentation - [Complete Documentation](/document/docs/llm/llms-full.html): Documentation - [REST API Reference](/document/docs/llm/llms-restapi.html): Documentation - [Frontend Prompts](/document/docs/llm/llms-prompts.html): Documentation ## API Endpoints Summary ### auteurlabb-auth-service Service - `POST /auth-api/getUser` - getUser - `POST /auth-api/updateUser` - updateUser - `POST /auth-api/updateProfile` - updateProfile - `POST /auth-api/createUser` - createUser - `POST /auth-api/deleteUser` - deleteUser - `POST /auth-api/archiveProfile` - archiveProfile - `POST /auth-api/listUsers` - listUsers - `POST /auth-api/searchUsers` - searchUsers - `POST /auth-api/updateUserRole` - updateUserRole - `POST /auth-api/updateUserPassword` - updateUserPassword - `POST /auth-api/updateUserPasswordByAdmin` - updateUserPasswordByAdmin - `POST /auth-api/getBriefUser` - getBriefUser - `POST /auth-api/streamTest` - streamTest - `POST /auth-api/registerUser` - registerUser - `POST /auth-api/getUserAvatarsFile` - getUserAvatarsFile - `POST /auth-api/listUserAvatarsFiles` - listUserAvatarsFiles - `POST /auth-api/deleteUserAvatarsFile` - deleteUserAvatarsFile - `POST /auth-api/_fetchListUserAvatarsFile` - _fetchListUserAvatarsFile ### auteurlabb-projectportfolio-service Service - `POST /projectPortfolio-api/createFilmProject` - createFilmProject - `POST /projectPortfolio-api/updateFilmProject` - updateFilmProject - `POST /projectPortfolio-api/getFilmProject` - getFilmProject - `POST /projectPortfolio-api/listFilmProjects` - listFilmProjects - `POST /projectPortfolio-api/createAccessGrant` - createAccessGrant - `POST /projectPortfolio-api/updateAccessGrant` - updateAccessGrant - `POST /projectPortfolio-api/getAccessGrant` - getAccessGrant - `POST /projectPortfolio-api/listAccessGrants` - listAccessGrants - `POST /projectPortfolio-api/createBookmark` - createBookmark - `POST /projectPortfolio-api/deleteBookmark` - deleteBookmark - `POST /projectPortfolio-api/listBookmarks` - listBookmarks - `POST /projectPortfolio-api/createInvestmentOffer` - createInvestmentOffer - `POST /projectPortfolio-api/respondToInvestmentOffer` - respondToInvestmentOffer - `POST /projectPortfolio-api/listInvestmentOffers` - listInvestmentOffers - `POST /projectPortfolio-api/withdrawInvestmentOffer` - withdrawInvestmentOffer - `POST /projectPortfolio-api/followUser` - followUser - `POST /projectPortfolio-api/unfollowUser` - unfollowUser - `POST /projectPortfolio-api/listUserFollows` - listUserFollows - `POST /projectPortfolio-api/_fetchListFilmProject` - _fetchListFilmProject - `POST /projectPortfolio-api/_fetchListAccessGrant` - _fetchListAccessGrant - `POST /projectPortfolio-api/_fetchListProjectBookmark` - _fetchListProjectBookmark - `POST /projectPortfolio-api/_fetchListInvestmentOffer` - _fetchListInvestmentOffer - `POST /projectPortfolio-api/_fetchListUserFollow` - _fetchListUserFollow ### auteurlabb-messagingcenter-service Service - `POST /messagingCenter-api/createMessageThread` - createMessageThread - `POST /messagingCenter-api/getMessageThread` - getMessageThread - `POST /messagingCenter-api/listMessageThreads` - listMessageThreads - `POST /messagingCenter-api/updateMessageThread` - updateMessageThread - `POST /messagingCenter-api/createMessage` - createMessage - `POST /messagingCenter-api/getMessage` - getMessage - `POST /messagingCenter-api/listMessages` - listMessages - `POST /messagingCenter-api/updateMessage` - updateMessage - `POST /messagingCenter-api/deleteMessage` - deleteMessage - `POST /messagingCenter-api/_fetchListMessageThread` - _fetchListMessageThread - `POST /messagingCenter-api/_fetchListMessage` - _fetchListMessage ### auteurlabb-moderationadmin-service Service - `POST /moderationAdmin-api/createApprovalRequest` - createApprovalRequest - `POST /moderationAdmin-api/reviewApprovalRequest` - reviewApprovalRequest - `POST /moderationAdmin-api/getApprovalRequest` - getApprovalRequest - `POST /moderationAdmin-api/listApprovalRequests` - listApprovalRequests - `POST /moderationAdmin-api/createReportLog` - createReportLog - `POST /moderationAdmin-api/reviewReportLog` - reviewReportLog - `POST /moderationAdmin-api/getReportLog` - getReportLog - `POST /moderationAdmin-api/listReportLogs` - listReportLogs - `POST /moderationAdmin-api/createSuspensionRecord` - createSuspensionRecord - `POST /moderationAdmin-api/liftSuspensionRecord` - liftSuspensionRecord - `POST /moderationAdmin-api/getSuspensionRecord` - getSuspensionRecord - `POST /moderationAdmin-api/listSuspensionRecords` - listSuspensionRecords - `POST /moderationAdmin-api/createAuditLog` - createAuditLog - `POST /moderationAdmin-api/getAuditLog` - getAuditLog - `POST /moderationAdmin-api/listAuditLogs` - listAuditLogs - `POST /moderationAdmin-api/_fetchListApprovalRequest` - _fetchListApprovalRequest - `POST /moderationAdmin-api/_fetchListReportLog` - _fetchListReportLog - `POST /moderationAdmin-api/_fetchListSuspensionRecord` - _fetchListSuspensionRecord - `POST /moderationAdmin-api/_fetchListAuditLog` - _fetchListAuditLog ### auteurlabb-agenthub-service Service - `POST /agentHub-api/getAgentOverride` - getAgentOverride - `POST /agentHub-api/listAgentOverrides` - listAgentOverrides - `POST /agentHub-api/updateAgentOverride` - updateAgentOverride - `POST /agentHub-api/createAgentOverride` - createAgentOverride - `POST /agentHub-api/deleteAgentOverride` - deleteAgentOverride - `POST /agentHub-api/listToolCatalog` - listToolCatalog - `POST /agentHub-api/getToolCatalogEntry` - getToolCatalogEntry - `POST /agentHub-api/listAgentExecutions` - listAgentExecutions - `POST /agentHub-api/getAgentExecution` - getAgentExecution - `POST /agentHub-api/_fetchListSys_agentOverride` - _fetchListSys_agentOverride - `POST /agentHub-api/_fetchListSys_agentExecution` - _fetchListSys_agentExecution - `POST /agentHub-api/_fetchListSys_toolCatalog` - _fetchListSys_toolCatalog ## Getting Started 1. **Authentication**: Start with the Auth Service to register and authenticate users 2. **Data Queries**: Use the BFF Service for optimized read-only data queries 3. **Business Operations**: Use individual business services for create/update/delete operations ## Additional Resources - Full documentation: /document/docs/intro.html - Search: /document/docs/search.html --- Generated by Mindbricks Genesis Engine