# Airbnb-Style Rental Marketplace Backend > airbnb is a global platform enabling hosts to list properties and guests to book short-term stays with secure payments, messaging, and review systems. It connects hosts and guests through a robust travel/hospitality marketplace, handling authentication, bookings, payments, and moderation. The backend supports global operations with multi-language and multi-currency features... 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 # Airbnb-Style Rental Marketplace Backend Version : 1.0.108 airbnb is a global platform enabling hosts to list properties and guests to book short-term stays with secure payments, messaging, and review systems. It connects hosts and guests through a robust travel/hospitality marketplace, handling authentication, bookings, payments, and moderation. The backend supports global operations with multi-language and multi-currency features... ## How to Use Project Documents The `Airbnb` 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://airbnb3.prw.mindbricks.com/auth-api` | | **Staging** | `https://airbnb3-stage.mindbricks.co/auth-api` | | **Production** | `https://airbnb3.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 `Airbnb` 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 `Airbnb-Style Rental Marketplace Backend` 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 ### messaging Service **Description:** Enables secure in-app messaging between guests and hosts. Handles threads, messages (with text/media/system types), abuse flagging, and admin moderation for resolution.. **Documentation:** * [REST API Guide](/document/docs/messaging-service/rest-api-guide.html) * [Event Guide](/document/docs/messaging-service/event-guide.html) * [Service Design](/document/docs/messaging-service/service-design.html) **Base URL Examples:** | Environment | URL | |-------------|---------------------| | **Preview** | `https://airbnb3.prw.mindbricks.com/messaging-api` | | **Staging** | `https://airbnb3-stage.mindbricks.co/messaging-api` | | **Production** | `https://airbnb3.mindbricks.co/messaging-api` | ### propertyCatalog Service **Description:** Service for management of property listings, calendars, amenities, and localization for a short-term rental marketplace. Hosts can manage listings, availability, multi-language descriptions, policies, pricing, and attributes, served for global search and discovery... **Documentation:** * [REST API Guide](/document/docs/propertyCatalog-service/rest-api-guide.html) * [Event Guide](/document/docs/propertyCatalog-service/event-guide.html) * [Service Design](/document/docs/propertyCatalog-service/service-design.html) **Base URL Examples:** | Environment | URL | |-------------|---------------------| | **Preview** | `https://airbnb3.prw.mindbricks.com/propertycatalog-api` | | **Staging** | `https://airbnb3-stage.mindbricks.co/propertycatalog-api` | | **Production** | `https://airbnb3.mindbricks.co/propertycatalog-api` | ### bookingManagement Service **Description:** Orchestrates booking, payment, calendar, changewsand dispute flows for Airbnb-style short-term rental marketplace...test Handles reservations, approval, Stripe payments, iCal sync, payment records, and the dispute/refund lifecycle with host/guest/admin visibility. **Documentation:** * [REST API Guide](/document/docs/bookingManagement-service/rest-api-guide.html) * [Event Guide](/document/docs/bookingManagement-service/event-guide.html) * [Service Design](/document/docs/bookingManagement-service/service-design.html) **Base URL Examples:** | Environment | URL | |-------------|---------------------| | **Preview** | `https://airbnb3.prw.mindbricks.com/bookingmanagement-api` | | **Staging** | `https://airbnb3-stage.mindbricks.co/bookingmanagement-api` | | **Production** | `https://airbnb3.mindbricks.co/bookingmanagement-api` | ### reviewSystem Service **Description:** Handles double-blind, moderated reviews and rating aggregation for stays. Allows guests/hosts to review each other and listings, supports moderation, and exposes aggregate stats for listings/profiles... **Documentation:** * [REST API Guide](/document/docs/reviewSystem-service/rest-api-guide.html) * [Event Guide](/document/docs/reviewSystem-service/event-guide.html) * [Service Design](/document/docs/reviewSystem-service/service-design.html) **Base URL Examples:** | Environment | URL | |-------------|---------------------| | **Preview** | `https://airbnb3.prw.mindbricks.com/reviewsystem-api` | | **Staging** | `https://airbnb3-stage.mindbricks.co/reviewsystem-api` | | **Production** | `https://airbnb3.mindbricks.co/reviewsystem-api` | ### platformAdmin Service **Description:** Administrative and compliance management backend for moderation, audit, dispute, financial oversight, localization, and GDPR in the Airbnb-style rental platform. **Documentation:** * [REST API Guide](/document/docs/platformAdmin-service/rest-api-guide.html) * [Event Guide](/document/docs/platformAdmin-service/event-guide.html) * [Service Design](/document/docs/platformAdmin-service/service-design.html) **Base URL Examples:** | Environment | URL | |-------------|---------------------| | **Preview** | `https://airbnb3.prw.mindbricks.com/platformadmin-api` | | **Staging** | `https://airbnb3-stage.mindbricks.co/platformadmin-api` | | **Production** | `https://airbnb3.mindbricks.co/platformadmin-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://airbnb3.prw.mindbricks.com/agenthub-api` | | **Staging** | `https://airbnb3-stage.mindbricks.co/agenthub-api` | | **Production** | `https://airbnb3.mindbricks.co/agenthub-api` | ## Connect via MCP (Model Context Protocol) All backend services in the `Airbnb` 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://airbnb3.prw.mindbricks.com/mcpbff-api/mcp` | `https://airbnb3.prw.mindbricks.com/mcpbff-api/mcp/sse` | | **Staging** | `https://airbnb3-stage.mindbricks.co/mcpbff-api/mcp` | `https://airbnb3-stage.mindbricks.co/mcpbff-api/mcp/sse` | | **Production** | `https://airbnb3.mindbricks.co/mcpbff-api/mcp` | `https://airbnb3.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": { "airbnb3": { "url": "https://airbnb3.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": { "airbnb3": { "url": "https://airbnb3.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 `Airbnb-Style Rental Marketplace Backend` 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): Airbnb-Style Rental Marketplace Backend ### 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 - [Messaging Service](/document/docs/frontend-prompts/frontend-prompt-7-messagingService.html): Messaging Service - [PropertyCatalog Service](/document/docs/frontend-prompts/frontend-prompt-8-propertyCatalogService.html): PropertyCatalog Service - [BookingManagement Service](/document/docs/frontend-prompts/frontend-prompt-9-bookingManagementService.html): BookingManagement Service - [BookingManagement Service Reservation Payment Flow](/document/docs/frontend-prompts/frontend-prompt-10-reservation-payment-flow.html): BookingManagement Service Reservation Payment Flow - [ReviewSystem Service](/document/docs/frontend-prompts/frontend-prompt-11-reviewSystemService.html): ReviewSystem Service - [PlatformAdmin Service](/document/docs/frontend-prompts/frontend-prompt-12-platformAdminService.html): PlatformAdmin Service - [AgentHub Service](/document/docs/frontend-prompts/frontend-prompt-13-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 - [userGroup Design](/document/docs/auth-service/userGroup-design.html): Documentation - [userGroupMember Design](/document/docs/auth-service/userGroupMember-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` - [createUserGroup API](/document/docs/auth-service/business-api/createUserGroup-api-design.html): Business API Design Specification - `Create Usergroup` - [updateUserGroup API](/document/docs/auth-service/business-api/updateUserGroup-api-design.html): Business API Design Specification - `Update Usergroup` - [deleteUserGroup API](/document/docs/auth-service/business-api/deleteUserGroup-api-design.html): Business API Design Specification - `Delete Usergroup` - [getUserGroup API](/document/docs/auth-service/business-api/getUserGroup-api-design.html): Business API Design Specification - `Get Usergroup` - [listUserGroups API](/document/docs/auth-service/business-api/listUserGroups-api-design.html): Business API Design Specification - `List Usergroups` - [getUserGroupMember API](/document/docs/auth-service/business-api/getUserGroupMember-api-design.html): Business API Design Specification - `Get Usergroupmember` - [createUserGroupMember API](/document/docs/auth-service/business-api/createUserGroupMember-api-design.html): Business API Design Specification - `Create Usergroupmember` - [deleteUserGroupMember API](/document/docs/auth-service/business-api/deleteUserGroupMember-api-design.html): Business API Design Specification - `Delete Usergroupmember` - [listUserGroupMembers API](/document/docs/auth-service/business-api/listUserGroupMembers-api-design.html): Business API Design Specification - `List Usergroupmembers` - [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` ### Messaging Service - [Service Design](/document/docs/messaging-service/service-design.html): Service Design Specification - [REST API Guide](/document/docs/messaging-service/rest-api-guide.html): REST API GUIDE - [Event Guide](/document/docs/messaging-service/event-guide.html): . #### Data Objects - [messageThread Design](/document/docs/messaging-service/messageThread-design.html): Documentation - [messageReport Design](/document/docs/messaging-service/messageReport-design.html): Documentation - [message Design](/document/docs/messaging-service/message-design.html): Documentation #### Business APIs - [deleteMessage API](/document/docs/messaging-service/business-api/deleteMessage-api-design.html): Business API Design Specification - `Delete Message` - [createMessageThread API](/document/docs/messaging-service/business-api/createMessageThread-api-design.html): Business API Design Specification - `Create Messagethread` - [updateMessage API](/document/docs/messaging-service/business-api/updateMessage-api-design.html): Business API Design Specification - `Update Message` - [updateMessageThread API](/document/docs/messaging-service/business-api/updateMessageThread-api-design.html): Business API Design Specification - `Update Messagethread` - [deleteMessageThread API](/document/docs/messaging-service/business-api/deleteMessageThread-api-design.html): Business API Design Specification - `Delete Messagethread` - [createMessage API](/document/docs/messaging-service/business-api/createMessage-api-design.html): Business API Design Specification - `Create Message` - [getMessageThread API](/document/docs/messaging-service/business-api/getMessageThread-api-design.html): Business API Design Specification - `Get Messagethread` - [getMessage API](/document/docs/messaging-service/business-api/getMessage-api-design.html): Business API Design Specification - `Get Message` - [listMessageThreads API](/document/docs/messaging-service/business-api/listMessageThreads-api-design.html): Business API Design Specification - `List Messagethreads` - [getThreadMessages API](/document/docs/messaging-service/business-api/getThreadMessages-api-design.html): Business API Design Specification - `Get Threadmessages` - [gotthreadMessages API](/document/docs/messaging-service/business-api/gotthreadMessages-api-design.html): Business API Design Specification - `Gotthread Messages` - [listMessageReports API](/document/docs/messaging-service/business-api/listMessageReports-api-design.html): Business API Design Specification - `List Messagereports` - [createMessageReport API](/document/docs/messaging-service/business-api/createMessageReport-api-design.html): Business API Design Specification - `Create Messagereport` - [updateMessageReport API](/document/docs/messaging-service/business-api/updateMessageReport-api-design.html): Business API Design Specification - `Update Messagereport` - [getMessageReport API](/document/docs/messaging-service/business-api/getMessageReport-api-design.html): Business API Design Specification - `Get Messagereport` ### PropertyCatalog Service - [Service Design](/document/docs/propertyCatalog-service/service-design.html): Service Design Specification - [REST API Guide](/document/docs/propertyCatalog-service/rest-api-guide.html): REST API GUIDE - [Event Guide](/document/docs/propertyCatalog-service/event-guide.html): . #### Data Objects - [listingCalendar Design](/document/docs/propertyCatalog-service/listingCalendar-design.html): Documentation - [listingAmenity Design](/document/docs/propertyCatalog-service/listingAmenity-design.html): Documentation - [listing Design](/document/docs/propertyCatalog-service/listing-design.html): Documentation - [listingLocaleText Design](/document/docs/propertyCatalog-service/listingLocaleText-design.html): Documentation #### Business APIs - [updateListing API](/document/docs/propertyCatalog-service/business-api/updateListing-api-design.html): Business API Design Specification - `Update Listing` - [createListing API](/document/docs/propertyCatalog-service/business-api/createListing-api-design.html): Business API Design Specification - `Create Listing` - [deleteListing API](/document/docs/propertyCatalog-service/business-api/deleteListing-api-design.html): Business API Design Specification - `Delete Listing` - [listListings API](/document/docs/propertyCatalog-service/business-api/listListings-api-design.html): Business API Design Specification - `List Listings` - [updateListingCalendar API](/document/docs/propertyCatalog-service/business-api/updateListingCalendar-api-design.html): Business API Design Specification - `Update Listingcalendar` - [createListingCalendar API](/document/docs/propertyCatalog-service/business-api/createListingCalendar-api-design.html): Business API Design Specification - `Create Listingcalendar` - [deleteListingCalendar API](/document/docs/propertyCatalog-service/business-api/deleteListingCalendar-api-design.html): Business API Design Specification - `Delete Listingcalendar` - [getListingCalendar API](/document/docs/propertyCatalog-service/business-api/getListingCalendar-api-design.html): Business API Design Specification - `Get Listingcalendar` - [listListingCalendars API](/document/docs/propertyCatalog-service/business-api/listListingCalendars-api-design.html): Business API Design Specification - `List Listingcalendars` - [getListing API](/document/docs/propertyCatalog-service/business-api/getListing-api-design.html): Business API Design Specification - `Get Listing` - [createListingLocaleText API](/document/docs/propertyCatalog-service/business-api/createListingLocaleText-api-design.html): Business API Design Specification - `Create Listinglocaletext` - [listListingAmenities API](/document/docs/propertyCatalog-service/business-api/listListingAmenities-api-design.html): Business API Design Specification - `List Listingamenities` - [deleteListingLocaleText API](/document/docs/propertyCatalog-service/business-api/deleteListingLocaleText-api-design.html): Business API Design Specification - `Delete Listinglocaletext` - [listListingLocaleTexts API](/document/docs/propertyCatalog-service/business-api/listListingLocaleTexts-api-design.html): Business API Design Specification - `List Listinglocaletexts` - [updateListingLocaleText API](/document/docs/propertyCatalog-service/business-api/updateListingLocaleText-api-design.html): Business API Design Specification - `Update Listinglocaletext` - [updateListingAmenity API](/document/docs/propertyCatalog-service/business-api/updateListingAmenity-api-design.html): Business API Design Specification - `Update Listingamenity` - [getListingAmenity API](/document/docs/propertyCatalog-service/business-api/getListingAmenity-api-design.html): Business API Design Specification - `Get Listingamenity` - [getListingLocaleText API](/document/docs/propertyCatalog-service/business-api/getListingLocaleText-api-design.html): Business API Design Specification - `Get Listinglocaletext` - [createListingAmenity API](/document/docs/propertyCatalog-service/business-api/createListingAmenity-api-design.html): Business API Design Specification - `Create Listingamenity` - [deleteListingAmenity API](/document/docs/propertyCatalog-service/business-api/deleteListingAmenity-api-design.html): Business API Design Specification - `Delete Listingamenity` ### BookingManagement Service - [Service Design](/document/docs/bookingManagement-service/service-design.html): Service Design Specification - [REST API Guide](/document/docs/bookingManagement-service/rest-api-guide.html): REST API GUIDE - [Event Guide](/document/docs/bookingManagement-service/event-guide.html): . #### Data Objects - [reservation Design](/document/docs/bookingManagement-service/reservation-design.html): Documentation - [paymentRecord Design](/document/docs/bookingManagement-service/paymentRecord-design.html): Documentation - [dispute Design](/document/docs/bookingManagement-service/dispute-design.html): Documentation - [sys_reservationPayment Design](/document/docs/bookingManagement-service/sys_reservationPayment-design.html): Documentation - [sys_paymentCustomer Design](/document/docs/bookingManagement-service/sys_paymentCustomer-design.html): Documentation - [sys_paymentMethod Design](/document/docs/bookingManagement-service/sys_paymentMethod-design.html): Documentation #### Business APIs - [updateDispute API](/document/docs/bookingManagement-service/business-api/updateDispute-api-design.html): Business API Design Specification - `Update Dispute` - [getPaymentRecord API](/document/docs/bookingManagement-service/business-api/getPaymentRecord-api-design.html): Business API Design Specification - `Get Paymentrecord` - [getReservation API](/document/docs/bookingManagement-service/business-api/getReservation-api-design.html): Business API Design Specification - `Get Reservation` - [createDispute API](/document/docs/bookingManagement-service/business-api/createDispute-api-design.html): Business API Design Specification - `Create Dispute` - [listReservations API](/document/docs/bookingManagement-service/business-api/listReservations-api-design.html): Business API Design Specification - `List Reservations` - [createReservation API](/document/docs/bookingManagement-service/business-api/createReservation-api-design.html): Business API Design Specification - `Create Reservation` - [createPaymentRecord API](/document/docs/bookingManagement-service/business-api/createPaymentRecord-api-design.html): Business API Design Specification - `Create Paymentrecord` - [listPaymentRecords API](/document/docs/bookingManagement-service/business-api/listPaymentRecords-api-design.html): Business API Design Specification - `List Paymentrecords` - [deleteReservation API](/document/docs/bookingManagement-service/business-api/deleteReservation-api-design.html): Business API Design Specification - `Delete Reservation` - [updateReservation API](/document/docs/bookingManagement-service/business-api/updateReservation-api-design.html): Business API Design Specification - `Update Reservation` - [listDisputes API](/document/docs/bookingManagement-service/business-api/listDisputes-api-design.html): Business API Design Specification - `List Disputes` - [getDispute API](/document/docs/bookingManagement-service/business-api/getDispute-api-design.html): Business API Design Specification - `Get Dispute` - [getReservationPayment API](/document/docs/bookingManagement-service/business-api/getReservationPayment-api-design.html): Business API Design Specification - `Get Reservationpayment` - [listReservationPayments API](/document/docs/bookingManagement-service/business-api/listReservationPayments-api-design.html): Business API Design Specification - `List Reservationpayments` - [createReservationPayment API](/document/docs/bookingManagement-service/business-api/createReservationPayment-api-design.html): Business API Design Specification - `Create Reservationpayment` - [updateReservationPayment API](/document/docs/bookingManagement-service/business-api/updateReservationPayment-api-design.html): Business API Design Specification - `Update Reservationpayment` - [deleteReservationPayment API](/document/docs/bookingManagement-service/business-api/deleteReservationPayment-api-design.html): Business API Design Specification - `Delete Reservationpayment` - [getReservationPaymentByOrderId API](/document/docs/bookingManagement-service/business-api/getReservationPaymentByOrderId-api-design.html): Business API Design Specification - `Get Reservationpaymentbyorderid` - [getReservationPaymentByPaymentId API](/document/docs/bookingManagement-service/business-api/getReservationPaymentByPaymentId-api-design.html): Business API Design Specification - `Get Reservationpaymentbypaymentid` - [startReservationPayment API](/document/docs/bookingManagement-service/business-api/startReservationPayment-api-design.html): Business API Design Specification - `Start Reservationpayment` - [refreshReservationPayment API](/document/docs/bookingManagement-service/business-api/refreshReservationPayment-api-design.html): Business API Design Specification - `Refresh Reservationpayment` - [callbackReservationPayment API](/document/docs/bookingManagement-service/business-api/callbackReservationPayment-api-design.html): Business API Design Specification - `Callback Reservationpayment` - [getPaymentCustomerByUserId API](/document/docs/bookingManagement-service/business-api/getPaymentCustomerByUserId-api-design.html): Business API Design Specification - `Get Paymentcustomerbyuserid` - [listPaymentCustomers API](/document/docs/bookingManagement-service/business-api/listPaymentCustomers-api-design.html): Business API Design Specification - `List Paymentcustomers` - [listPaymentCustomerMethods API](/document/docs/bookingManagement-service/business-api/listPaymentCustomerMethods-api-design.html): Business API Design Specification - `List Paymentcustomermethods` - [Service Library](/document/docs/bookingManagement-service/service-library.html): Service Library - `bookingManagement` ### ReviewSystem Service - [Service Design](/document/docs/reviewSystem-service/service-design.html): Service Design Specification - [REST API Guide](/document/docs/reviewSystem-service/rest-api-guide.html): REST API GUIDE - [Event Guide](/document/docs/reviewSystem-service/event-guide.html): . #### Data Objects - [reviewAggregate Design](/document/docs/reviewSystem-service/reviewAggregate-design.html): Documentation - [review Design](/document/docs/reviewSystem-service/review-design.html): Documentation #### Business APIs - [getReview API](/document/docs/reviewSystem-service/business-api/getReview-api-design.html): Business API Design Specification - `Get Review` - [listReviewAggregates API](/document/docs/reviewSystem-service/business-api/listReviewAggregates-api-design.html): Business API Design Specification - `List Reviewaggregates` - [createReview API](/document/docs/reviewSystem-service/business-api/createReview-api-design.html): Business API Design Specification - `Create Review` - [deleteReview API](/document/docs/reviewSystem-service/business-api/deleteReview-api-design.html): Business API Design Specification - `Delete Review` - [getReviewAggregate API](/document/docs/reviewSystem-service/business-api/getReviewAggregate-api-design.html): Business API Design Specification - `Get Reviewaggregate` - [listReviews API](/document/docs/reviewSystem-service/business-api/listReviews-api-design.html): Business API Design Specification - `List Reviews` - [updateReview API](/document/docs/reviewSystem-service/business-api/updateReview-api-design.html): Business API Design Specification - `Update Review` - [Service Library](/document/docs/reviewSystem-service/service-library.html): Service Library - `reviewSystem` ### PlatformAdmin Service - [Service Design](/document/docs/platformAdmin-service/service-design.html): Service Design Specification - [REST API Guide](/document/docs/platformAdmin-service/rest-api-guide.html): REST API GUIDE - [Event Guide](/document/docs/platformAdmin-service/event-guide.html): . #### Data Objects - [localizationSetting Design](/document/docs/platformAdmin-service/localizationSetting-design.html): Documentation - [adminDisputeAction Design](/document/docs/platformAdmin-service/adminDisputeAction-design.html): Documentation - [apiKey Design](/document/docs/platformAdmin-service/apiKey-design.html): Documentation - [financialReport Design](/document/docs/platformAdmin-service/financialReport-design.html): Documentation - [auditLog Design](/document/docs/platformAdmin-service/auditLog-design.html): Documentation - [gdprAction Design](/document/docs/platformAdmin-service/gdprAction-design.html): Documentation #### Business APIs - [getAuditLog API](/document/docs/platformAdmin-service/business-api/getAuditLog-api-design.html): Business API Design Specification - `Get Auditlog` - [getFinancialReport API](/document/docs/platformAdmin-service/business-api/getFinancialReport-api-design.html): Business API Design Specification - `Get Financialreport` - [createFinancialReport API](/document/docs/platformAdmin-service/business-api/createFinancialReport-api-design.html): Business API Design Specification - `Create Financialreport` - [listAuditLogs API](/document/docs/platformAdmin-service/business-api/listAuditLogs-api-design.html): Business API Design Specification - `List Auditlogs` - [listFinancialReports API](/document/docs/platformAdmin-service/business-api/listFinancialReports-api-design.html): Business API Design Specification - `List Financialreports` - [createAuditLog API](/document/docs/platformAdmin-service/business-api/createAuditLog-api-design.html): Business API Design Specification - `Create Auditlog` - [createLocalizationSetting API](/document/docs/platformAdmin-service/business-api/createLocalizationSetting-api-design.html): Business API Design Specification - `Create Localizationsetting` - [listAdminDisputeActions API](/document/docs/platformAdmin-service/business-api/listAdminDisputeActions-api-design.html): Business API Design Specification - `List Admindisputeactions` - [createAdminDisputeAction API](/document/docs/platformAdmin-service/business-api/createAdminDisputeAction-api-design.html): Business API Design Specification - `Create Admindisputeaction` - [updateLocalizationSetting API](/document/docs/platformAdmin-service/business-api/updateLocalizationSetting-api-design.html): Business API Design Specification - `Update Localizationsetting` - [updateGdprAction API](/document/docs/platformAdmin-service/business-api/updateGdprAction-api-design.html): Business API Design Specification - `Update Gdpraction` - [listGdprActions API](/document/docs/platformAdmin-service/business-api/listGdprActions-api-design.html): Business API Design Specification - `List Gdpractions` - [createApiKey API](/document/docs/platformAdmin-service/business-api/createApiKey-api-design.html): Business API Design Specification - `Create Apikey` - [listApiKeys API](/document/docs/platformAdmin-service/business-api/listApiKeys-api-design.html): Business API Design Specification - `List Apikeys` - [updateApiKey API](/document/docs/platformAdmin-service/business-api/updateApiKey-api-design.html): Business API Design Specification - `Update Apikey` - [listLocalizationSettings API](/document/docs/platformAdmin-service/business-api/listLocalizationSettings-api-design.html): Business API Design Specification - `List Localizationsettings` - [createGdprAction API](/document/docs/platformAdmin-service/business-api/createGdprAction-api-design.html): Business API Design Specification - `Create Gdpraction` ### 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 ### airbnb-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/createUserGroup` - createUserGroup - `POST /auth-api/updateUserGroup` - updateUserGroup - `POST /auth-api/deleteUserGroup` - deleteUserGroup - `POST /auth-api/getUserGroup` - getUserGroup - `POST /auth-api/listUserGroups` - listUserGroups - `POST /auth-api/getUserGroupMember` - getUserGroupMember - `POST /auth-api/createUserGroupMember` - createUserGroupMember - `POST /auth-api/deleteUserGroupMember` - deleteUserGroupMember - `POST /auth-api/listUserGroupMembers` - listUserGroupMembers - `POST /auth-api/getUserAvatarsFile` - getUserAvatarsFile - `POST /auth-api/listUserAvatarsFiles` - listUserAvatarsFiles - `POST /auth-api/deleteUserAvatarsFile` - deleteUserAvatarsFile - `POST /auth-api/_fetchListUserAvatarsFile` - _fetchListUserAvatarsFile ### airbnb-messaging-service Service - `POST /messaging-api/deleteMessage` - deleteMessage - `POST /messaging-api/createMessageThread` - createMessageThread - `POST /messaging-api/updateMessage` - updateMessage - `POST /messaging-api/updateMessageThread` - updateMessageThread - `POST /messaging-api/deleteMessageThread` - deleteMessageThread - `POST /messaging-api/createMessage` - createMessage - `POST /messaging-api/getMessageThread` - getMessageThread - `POST /messaging-api/getMessage` - getMessage - `POST /messaging-api/listMessageThreads` - listMessageThreads - `POST /messaging-api/getThreadMessages` - getThreadMessages - `POST /messaging-api/gotthreadMessages` - gotthreadMessages - `POST /messaging-api/listMessageReports` - listMessageReports - `POST /messaging-api/createMessageReport` - createMessageReport - `POST /messaging-api/updateMessageReport` - updateMessageReport - `POST /messaging-api/getMessageReport` - getMessageReport - `POST /messaging-api/_fetchListMessageThread` - _fetchListMessageThread - `POST /messaging-api/_fetchListMessageReport` - _fetchListMessageReport - `POST /messaging-api/_fetchListMessage` - _fetchListMessage ### airbnb-propertycatalog-service Service - `POST /propertyCatalog-api/updateListing` - updateListing - `POST /propertyCatalog-api/createListing` - createListing - `POST /propertyCatalog-api/deleteListing` - deleteListing - `POST /propertyCatalog-api/listListings` - listListings - `POST /propertyCatalog-api/updateListingCalendar` - updateListingCalendar - `POST /propertyCatalog-api/createListingCalendar` - createListingCalendar - `POST /propertyCatalog-api/deleteListingCalendar` - deleteListingCalendar - `POST /propertyCatalog-api/getListingCalendar` - getListingCalendar - `POST /propertyCatalog-api/listListingCalendars` - listListingCalendars - `POST /propertyCatalog-api/getListing` - getListing - `POST /propertyCatalog-api/createListingLocaleText` - createListingLocaleText - `POST /propertyCatalog-api/listListingAmenities` - listListingAmenities - `POST /propertyCatalog-api/deleteListingLocaleText` - deleteListingLocaleText - `POST /propertyCatalog-api/listListingLocaleTexts` - listListingLocaleTexts - `POST /propertyCatalog-api/updateListingLocaleText` - updateListingLocaleText - `POST /propertyCatalog-api/updateListingAmenity` - updateListingAmenity - `POST /propertyCatalog-api/getListingAmenity` - getListingAmenity - `POST /propertyCatalog-api/getListingLocaleText` - getListingLocaleText - `POST /propertyCatalog-api/createListingAmenity` - createListingAmenity - `POST /propertyCatalog-api/deleteListingAmenity` - deleteListingAmenity - `POST /propertyCatalog-api/_fetchListListingCalendar` - _fetchListListingCalendar - `POST /propertyCatalog-api/_fetchListListingAmenity` - _fetchListListingAmenity - `POST /propertyCatalog-api/_fetchListListing` - _fetchListListing - `POST /propertyCatalog-api/_fetchListListingLocaleText` - _fetchListListingLocaleText ### airbnb-bookingmanagement-service Service - `POST /bookingManagement-api/updateDispute` - updateDispute - `POST /bookingManagement-api/getPaymentRecord` - getPaymentRecord - `POST /bookingManagement-api/getReservation` - getReservation - `POST /bookingManagement-api/createDispute` - createDispute - `POST /bookingManagement-api/listReservations` - listReservations - `POST /bookingManagement-api/createReservation` - createReservation - `POST /bookingManagement-api/createPaymentRecord` - createPaymentRecord - `POST /bookingManagement-api/listPaymentRecords` - listPaymentRecords - `POST /bookingManagement-api/deleteReservation` - deleteReservation - `POST /bookingManagement-api/updateReservation` - updateReservation - `POST /bookingManagement-api/listDisputes` - listDisputes - `POST /bookingManagement-api/getDispute` - getDispute - `POST /bookingManagement-api/getReservationPayment` - getReservationPayment - `POST /bookingManagement-api/listReservationPayments` - listReservationPayments - `POST /bookingManagement-api/createReservationPayment` - createReservationPayment - `POST /bookingManagement-api/updateReservationPayment` - updateReservationPayment - `POST /bookingManagement-api/deleteReservationPayment` - deleteReservationPayment - `POST /bookingManagement-api/getReservationPaymentByOrderId` - getReservationPaymentByOrderId - `POST /bookingManagement-api/getReservationPaymentByPaymentId` - getReservationPaymentByPaymentId - `POST /bookingManagement-api/startReservationPayment` - startReservationPayment - `POST /bookingManagement-api/refreshReservationPayment` - refreshReservationPayment - `POST /bookingManagement-api/callbackReservationPayment` - callbackReservationPayment - `POST /bookingManagement-api/getPaymentCustomerByUserId` - getPaymentCustomerByUserId - `POST /bookingManagement-api/listPaymentCustomers` - listPaymentCustomers - `POST /bookingManagement-api/listPaymentCustomerMethods` - listPaymentCustomerMethods - `POST /bookingManagement-api/_fetchListReservation` - _fetchListReservation - `POST /bookingManagement-api/_fetchListPaymentRecord` - _fetchListPaymentRecord - `POST /bookingManagement-api/_fetchListDispute` - _fetchListDispute - `POST /bookingManagement-api/_fetchListSys_reservationPayment` - _fetchListSys_reservationPayment - `POST /bookingManagement-api/_fetchListSys_paymentCustomer` - _fetchListSys_paymentCustomer - `POST /bookingManagement-api/_fetchListSys_paymentMethod` - _fetchListSys_paymentMethod ### airbnb-reviewsystem-service Service - `POST /reviewSystem-api/getReview` - getReview - `POST /reviewSystem-api/listReviewAggregates` - listReviewAggregates - `POST /reviewSystem-api/createReview` - createReview - `POST /reviewSystem-api/deleteReview` - deleteReview - `POST /reviewSystem-api/getReviewAggregate` - getReviewAggregate - `POST /reviewSystem-api/listReviews` - listReviews - `POST /reviewSystem-api/updateReview` - updateReview - `POST /reviewSystem-api/_fetchListReviewAggregate` - _fetchListReviewAggregate - `POST /reviewSystem-api/_fetchListReview` - _fetchListReview ### airbnb-platformadmin-service Service - `POST /platformAdmin-api/getAuditLog` - getAuditLog - `POST /platformAdmin-api/getFinancialReport` - getFinancialReport - `POST /platformAdmin-api/createFinancialReport` - createFinancialReport - `POST /platformAdmin-api/listAuditLogs` - listAuditLogs - `POST /platformAdmin-api/listFinancialReports` - listFinancialReports - `POST /platformAdmin-api/createAuditLog` - createAuditLog - `POST /platformAdmin-api/createLocalizationSetting` - createLocalizationSetting - `POST /platformAdmin-api/listAdminDisputeActions` - listAdminDisputeActions - `POST /platformAdmin-api/createAdminDisputeAction` - createAdminDisputeAction - `POST /platformAdmin-api/updateLocalizationSetting` - updateLocalizationSetting - `POST /platformAdmin-api/updateGdprAction` - updateGdprAction - `POST /platformAdmin-api/listGdprActions` - listGdprActions - `POST /platformAdmin-api/createApiKey` - createApiKey - `POST /platformAdmin-api/listApiKeys` - listApiKeys - `POST /platformAdmin-api/updateApiKey` - updateApiKey - `POST /platformAdmin-api/listLocalizationSettings` - listLocalizationSettings - `POST /platformAdmin-api/createGdprAction` - createGdprAction - `POST /platformAdmin-api/_fetchListLocalizationSetting` - _fetchListLocalizationSetting - `POST /platformAdmin-api/_fetchListAdminDisputeAction` - _fetchListAdminDisputeAction - `POST /platformAdmin-api/_fetchListApiKey` - _fetchListApiKey - `POST /platformAdmin-api/_fetchListFinancialReport` - _fetchListFinancialReport - `POST /platformAdmin-api/_fetchListAuditLog` - _fetchListAuditLog - `POST /platformAdmin-api/_fetchListGdprAction` - _fetchListGdprAction ### airbnb-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