LinkedIn Clone
This project’s structure and ideas are the same as he real linkedIn webiste
This documentation is designed to be consumed by both humans and AI agents. It provides comprehensive information about the backend services, APIs, data models, and integration patterns.
Detailed Documentation Files
For comprehensive documentation, the following detailed files are available:
-
llms-full.txt: Complete documentation including all service designs, data models, and API specifications in a single document with nested table of contents.
-
llms-restapi.txt: REST API focused documentation containing all service REST API guides combined. Ideal for understanding HTTP endpoints, request/response formats, and integration patterns.
-
llms-prompts.txt: Frontend development prompts for AI-assisted UI building. Contains detailed specifications for implementing frontend features with data models, API endpoints, and UI requirements.
Documentation Overview
LinkedIn Clone
Version : 1.0.2
This project's structure and ideas are the same as he real linkedIn webiste
How to Use Project Documents
The Linkedin 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://linkedin.prw.mindbricks.com/auth-api |
| Staging | https://linkedin-stage.mindbricks.co/auth-api |
| Production | https://linkedin.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 Linkedin project, AI agents and developers should begin by integrating with the Auth Service.
Mindbricks automatically generates a dedicated authentication microservice based on the project’s authentication definitions provided by the architect. This service provides the essential user and access management foundation for the project.
Agents should first utilize the Auth Service to:
- Register and authenticate users (login)
- Manage users, roles, and permissions
- Handle user groups (if defined)
- Support multi-tenancy logic (if configured)
- Perform Policy-Based Access Control (PBAC), if activated by the architect
Auth Service Documentation
Use the following resources to understand and integrate the Auth Service:
-
REST API Guide – ideal for frontend and direct HTTP usage
Auth REST API Guide -
Event Guide – helpful for event-driven or cross-service integrations
Auth Event Guide -
Service Design Document – overall structure, patterns, and logic
Auth Service Design
Note: For most frontend use cases, the REST API Guide will be the primary source. The Event Guide and Service Design documents are especially useful when integrating with other backend microservices or building systems that interact with the auth service indirectly.
Using the BFF (Backend-for-Frontend) Service
In Mindbricks, all backend services are designed with an advanced CQRS (Command Query Responsibility Segregation) architecture. Within this architecture, business services are responsible for managing their respective domains and ensuring the accuracy and freshness of domain data.
The BFF service complements these business services by providing a read-only aggregation and query layer tailored specifically for frontend and client-side applications.
Key Principles of the BFF Service
-
Elasticsearch Replicas for Fast Queries:
Each data object managed by a business service is automatically replicated as an Elasticsearch index, making it accessible for fast, frontend-oriented queries through the BFF. -
Cross-Service Data Aggregation:
The BFF offers an aggregation layer capable of combining data across multiple services, enabling complex filters, searches, and unified views of related data. -
Read-Only by Design:
The BFF service is strictly read-only. All create, update, or delete operations must be performed through the relevant business services, or via event-driven sagas if designed.
BFF Service Documentation
-
REST API Guide – querying aggregated and indexed data
BFF REST API Guide -
Event Guide – syncing strategies across replicas
BFF Event Guide -
Service Design – aggregation patterns and index structures
BFF Service Design
Tip: Use the BFF service as the main entry point for all frontend data queries. It simplifies access, reduces round-trips, and ensures that data is shaped appropriately for the UI layer.
Business Services Overview
The LinkedIn Clone project consists of multiple business services, each responsible for managing a specific domain within the system. These services expose their own REST APIs and documentation sets, and are accessible based on the environment (Preview, Staging, Production).
Usage Guidance
Business services are primarily designed to:
- Handle the state and operations of domain data
- Offer Create, Update, Delete operations over owned entities
- Serve direct data queries (
get,list) for their own objects when needed
For advanced query needs across multiple services or aggregated views, prefer using the BFF service.
Available Business Services
jobApplication Service
Description: Microservice handling job postings (created by recruiters/company admins), job applications (created by users), allowing job search, application submission, and status update workflows. Enforces business rules around application status, admin controls, and lets professionals apply and track job applications .within the network.
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://linkedin.prw.mindbricks.com/jobapplication-api |
| Staging | https://linkedin-stage.mindbricks.co/jobapplication-api |
| Production | https://linkedin.mindbricks.co/jobapplication-api |
networking Service
Description: Handles professional networking logic for user-to-user connections: manages connection requests, accepted relationships, listing/removal, permissions, and state transitions. Publishes connection lifecycle events for notification…
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://linkedin.prw.mindbricks.com/networking-api |
| Staging | https://linkedin-stage.mindbricks.co/networking-api |
| Production | https://linkedin.mindbricks.co/networking-api |
company Service
Description: Handles company profiles, company admin assignments, company following, and posting company updates/news. Enables professionals to follow companies, get updates, and enables admins to manage company presence…
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://linkedin.prw.mindbricks.com/company-api |
| Staging | https://linkedin-stage.mindbricks.co/company-api |
| Production | https://linkedin.mindbricks.co/company-api |
content Service
Description: Handles creation, editing, and deletion of user posts (with attachments and visibility), user post feed aggregation, and post engagement (likes, comments). All with post-level visibility control (public/private)…
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://linkedin.prw.mindbricks.com/content-api |
| Staging | https://linkedin-stage.mindbricks.co/content-api |
| Production | https://linkedin.mindbricks.co/content-api |
messaging Service
Description: Handles direct, private 1:1 and group messaging between users, conversation management, and message history/storage…
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://linkedin.prw.mindbricks.com/messaging-api |
| Staging | https://linkedin-stage.mindbricks.co/messaging-api |
| Production | https://linkedin.mindbricks.co/messaging-api |
profile Service
Description: Handles user professional profiles, including experience, education, skills, languages, certifications, profile photo, and visibility controls. Enables recruiter search, elastic-style indexing, and profile editing, with all data linked to authenticated users…
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://linkedin.prw.mindbricks.com/profile-api |
| Staging | https://linkedin-stage.mindbricks.co/profile-api |
| Production | https://linkedin.mindbricks.co/profile-api |
agentHub Service
Description: AI Agent Hub
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://linkedin.prw.mindbricks.com/agenthub-api |
| Staging | https://linkedin-stage.mindbricks.co/agenthub-api |
| Production | https://linkedin.mindbricks.co/agenthub-api |
Connect via MCP (Model Context Protocol)
All backend services in the Linkedin 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://linkedin.prw.mindbricks.com/mcpbff-api/mcp |
https://linkedin.prw.mindbricks.com/mcpbff-api/mcp/sse |
| Staging | https://linkedin-stage.mindbricks.co/mcpbff-api/mcp |
https://linkedin-stage.mindbricks.co/mcpbff-api/mcp/sse |
| Production | https://linkedin.mindbricks.co/mcpbff-api/mcp |
https://linkedin.mindbricks.co/mcpbff-api/mcp/sse |
Authentication
MCP connections require authentication via the Authorization header:
- API Key (recommended for AI agents):
Authorization: Bearer sk_mbx_your_api_key_hereAPI keys are long-lived and don’t expire like JWT tokens. Create one from the profile page. - JWT Token:
Authorization: Bearer {accessToken}Use a valid access token obtained from the login API.
OAuth is not supported for MCP connections at this time.
Connecting from Cursor
Add the following to your project’s .cursor/mcp.json:
{
"mcpServers": {
"linkedin": {
"url": "https://linkedin.prw.mindbricks.com/mcpbff-api/mcp",
"headers": {
"Authorization": "Bearer sk_mbx_your_api_key_here"
}
}
}
}
Connecting from Claude Desktop
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"linkedin": {
"url": "https://linkedin.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 LinkedIn Clone 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: LinkedIn Clone
Frontend Prompts
- Project Introduction & Setup: Project Introduction & Setup
- Authentication Management: Authentication Management
- Verification Management: Verification Management
- Profile Management: Profile Management
- User Management: User Management
- MCP BFF Integration: MCP BFF Integration
- JobApplication Service: JobApplication Service
- Networking Service: Networking Service
- Company Service: Company Service
- Content Service: Content Service
- Messaging Service: Messaging Service
- Profile Service: Profile Service
- Profile Service Premiumsubscription Payment Flow: Profile Service Premiumsubscription Payment Flow
- AgentHub Service: AgentHub Service
Auth Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- user Design: Documentation
- userAvatarsFile Design: Documentation
Business APIs
- getUser API: Business API Design Specification -
Get User - updateUser API: Business API Design Specification -
Update User - updateProfile API: Business API Design Specification -
Update Profile - createUser API: Business API Design Specification -
Create User - deleteUser API: Business API Design Specification -
Delete User - archiveProfile API: Business API Design Specification -
Archive Profile - listUsers API: Business API Design Specification -
List Users - searchUsers API: Business API Design Specification -
Search Users - updateUserRole API: Business API Design Specification -
Update Userrole - updateUserPassword API: Business API Design Specification -
Update Userpassword - updateUserPasswordByAdmin API: Business API Design Specification -
Update Userpasswordbyadmin - getBriefUser API: Business API Design Specification -
Get Briefuser - streamTest API: Business API Design Specification -
Stream Test - registerUser API: Business API Design Specification -
Register User - getUserAvatarsFile API: Business API Design Specification -
Get Useravatarsfile - listUserAvatarsFiles API: Business API Design Specification -
List Useravatarsfiles - deleteUserAvatarsFile API: Business API Design Specification -
Delete Useravatarsfile
Database Buckets
- userAvatars Bucket: Database Bucket Design Specification -
userAvatars
JobApplication Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- jobPosting Design: Documentation
- jobApplication Design: Documentation
Business APIs
- deleteJobApplication API: Business API Design Specification -
Delete Jobapplication - getJobApplication API: Business API Design Specification -
Get Jobapplication - updateJobPosting API: Business API Design Specification -
Update Jobposting - deleteJobPosting API: Business API Design Specification -
Delete Jobposting - getJobPosting API: Business API Design Specification -
Get Jobposting - updateJobApplication API: Business API Design Specification -
Update Jobapplication - createJobApplication API: Business API Design Specification -
Create Jobapplication - listJobPostings API: Business API Design Specification -
List Jobpostings - listJobApplications API: Business API Design Specification -
List Jobapplications - createJobPosting API: Business API Design Specification -
Create Jobposting - Service Library: Service Library -
jobApplication
Networking Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- connection Design: Documentation
- connectionRequest Design: Documentation
Business APIs
- createConnection API: Business API Design Specification -
Create Connection - deleteConnectionRequest API: Business API Design Specification -
Delete Connectionrequest - updateConnectionRequest API: Business API Design Specification -
Update Connectionrequest - listConnections API: Business API Design Specification -
List Connections - listConnectionRequests API: Business API Design Specification -
List Connectionrequests - createConnectionRequest API: Business API Design Specification -
Create Connectionrequest - deleteConnection API: Business API Design Specification -
Delete Connection - getConnectionRequest API: Business API Design Specification -
Get Connectionrequest - getConnection API: Business API Design Specification -
Get Connection - Service Library: Service Library -
networking
Company Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- companyFollower Design: Documentation
- companyUpdate Design: Documentation
- company Design: Documentation
- companyAdmin Design: Documentation
Business APIs
- getCompanyAdmin API: Business API Design Specification -
Get Companyadmin - followCompany API: Business API Design Specification -
Follow Company - removeCompanyAdmin API: Business API Design Specification -
Remove Companyadmin - createCompany API: Business API Design Specification -
Create Company - getCompany API: Business API Design Specification -
Get Company - listCompanies API: Business API Design Specification -
List Companies - updateCompany API: Business API Design Specification -
Update Company - deleteCompany API: Business API Design Specification -
Delete Company - assignCompanyAdmin API: Business API Design Specification -
Assign Companyadmin - listCompanyAdmins API: Business API Design Specification -
List Companyadmins - getCompanyUpdate API: Business API Design Specification -
Get Companyupdate - unfollowCompany API: Business API Design Specification -
Unfollow Company - listCompanyFollowers API: Business API Design Specification -
List Companyfollowers - createCompanyUpdate API: Business API Design Specification -
Create Companyupdate - updateCompanyUpdate API: Business API Design Specification -
Update Companyupdate - getCompanyFollower API: Business API Design Specification -
Get Companyfollower - deleteCompanyUpdate API: Business API Design Specification -
Delete Companyupdate - listCompanyUpdates API: Business API Design Specification -
List Companyupdates
Content Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- post Design: Documentation
- like Design: Documentation
- comment Design: Documentation
Business APIs
- createPost API: Business API Design Specification -
Create Post - updateComment API: Business API Design Specification -
Update Comment - listPosts API: Business API Design Specification -
List Posts - likePost API: Business API Design Specification -
Like Post - getPost API: Business API Design Specification -
Get Post - createComment API: Business API Design Specification -
Create Comment - deletePost API: Business API Design Specification -
Delete Post - updatePost API: Business API Design Specification -
Update Post - listLikes API: Business API Design Specification -
List Likes - unlikePost API: Business API Design Specification -
Unlike Post - listComments API: Business API Design Specification -
List Comments - getComment API: Business API Design Specification -
Get Comment - listUserPosts API: Business API Design Specification -
List Userposts - deleteComment API: Business API Design Specification -
Delete Comment - Service Library: Service Library -
content
Messaging Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- message Design: Documentation
- conversation Design: Documentation
Business APIs
- listMessages API: Business API Design Specification -
List Messages - updateConversation API: Business API Design Specification -
Update Conversation - getMessage API: Business API Design Specification -
Get Message - getConversation API: Business API Design Specification -
Get Conversation - updateMessage API: Business API Design Specification -
Update Message - deleteConversation API: Business API Design Specification -
Delete Conversation - listConversations API: Business API Design Specification -
List Conversations - deleteMessage API: Business API Design Specification -
Delete Message - createMessage API: Business API Design Specification -
Create Message - createConversation API: Business API Design Specification -
Create Conversation
Profile Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- profile Design: Documentation
- premiumsubscription Design: Documentation
- certification Design: Documentation
- language Design: Documentation
- sys_premiumsubscriptionPayment Design: Documentation
- sys_paymentCustomer Design: Documentation
- sys_paymentMethod Design: Documentation
Business APIs
- updateProfile API: Business API Design Specification -
Update Profile - deleteProfile API: Business API Design Specification -
Delete Profile - deleteLanguage API: Business API Design Specification -
Delete Language - updateLanguage API: Business API Design Specification -
Update Language - listProfiles API: Business API Design Specification -
List Profiles - listLanguages API: Business API Design Specification -
List Languages - getLanguage API: Business API Design Specification -
Get Language - createLanguage API: Business API Design Specification -
Create Language - createProfile API: Business API Design Specification -
Create Profile - getProfile API: Business API Design Specification -
Get Profile - deletePremuimSub API: Business API Design Specification -
Delete Premuimsub - updateCertification API: Business API Design Specification -
Update Certification - createPremuimSub API: Business API Design Specification -
Create Premuimsub - listCertifications API: Business API Design Specification -
List Certifications - updatePremuimSub API: Business API Design Specification -
Update Premuimsub - getPremuimSub API: Business API Design Specification -
Get Premuimsub - createCertification API: Business API Design Specification -
Create Certification - getCertification API: Business API Design Specification -
Get Certification - listPremuimSub API: Business API Design Specification -
List Premuimsub - deleteCertification API: Business API Design Specification -
Delete Certification - getPremiumsubscriptionPayment API: Business API Design Specification -
Get Premiumsubscriptionpayment - listPremiumsubscriptionPayments API: Business API Design Specification -
List Premiumsubscriptionpayments - createPremiumsubscriptionPayment API: Business API Design Specification -
Create Premiumsubscriptionpayment - updatePremiumsubscriptionPayment API: Business API Design Specification -
Update Premiumsubscriptionpayment - deletePremiumsubscriptionPayment API: Business API Design Specification -
Delete Premiumsubscriptionpayment - getPremiumsubscriptionPaymentByOrderId API: Business API Design Specification -
Get Premiumsubscriptionpaymentbyorderid - getPremiumsubscriptionPaymentByPaymentId API: Business API Design Specification -
Get Premiumsubscriptionpaymentbypaymentid - startPremiumsubscriptionPayment API: Business API Design Specification -
Start Premiumsubscriptionpayment - refreshPremiumsubscriptionPayment API: Business API Design Specification -
Refresh Premiumsubscriptionpayment - callbackPremiumsubscriptionPayment API: Business API Design Specification -
Callback Premiumsubscriptionpayment - getPaymentCustomerByUserId API: Business API Design Specification -
Get Paymentcustomerbyuserid - listPaymentCustomers API: Business API Design Specification -
List Paymentcustomers - listPaymentCustomerMethods API: Business API Design Specification -
List Paymentcustomermethods - Service Library: Service Library -
profile
AgentHub Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- sys_agentOverride Design: Documentation
- sys_agentExecution Design: Documentation
- sys_toolCatalog Design: Documentation
Business APIs
- getAgentOverride API: Business API Design Specification -
Get Agentoverride - listAgentOverrides API: Business API Design Specification -
List Agentoverrides - updateAgentOverride API: Business API Design Specification -
Update Agentoverride - createAgentOverride API: Business API Design Specification -
Create Agentoverride - deleteAgentOverride API: Business API Design Specification -
Delete Agentoverride - listToolCatalog API: Business API Design Specification -
List Toolcatalog - getToolCatalogEntry API: Business API Design Specification -
Get Toolcatalogentry - listAgentExecutions API: Business API Design Specification -
List Agentexecutions - getAgentExecution API: Business API Design Specification -
Get Agentexecution
Bff Service
- Service Design: —
- REST API Guide: Documentation
- Event Guide: Documentation
Notification Service
- Service Design: Provider-specific errors include stack traces
- REST API Guide: Documentation
- Event Guide: Documentation
LLM Documents
- Documentation Index: Documentation
- Complete Documentation: Documentation
- REST API Reference: Documentation
- Frontend Prompts: Documentation
API Endpoints Summary
linkedin-auth-service Service
POST /auth-api/getUser- getUserPOST /auth-api/updateUser- updateUserPOST /auth-api/updateProfile- updateProfilePOST /auth-api/createUser- createUserPOST /auth-api/deleteUser- deleteUserPOST /auth-api/archiveProfile- archiveProfilePOST /auth-api/listUsers- listUsersPOST /auth-api/searchUsers- searchUsersPOST /auth-api/updateUserRole- updateUserRolePOST /auth-api/updateUserPassword- updateUserPasswordPOST /auth-api/updateUserPasswordByAdmin- updateUserPasswordByAdminPOST /auth-api/getBriefUser- getBriefUserPOST /auth-api/streamTest- streamTestPOST /auth-api/registerUser- registerUserPOST /auth-api/getUserAvatarsFile- getUserAvatarsFilePOST /auth-api/listUserAvatarsFiles- listUserAvatarsFilesPOST /auth-api/deleteUserAvatarsFile- deleteUserAvatarsFilePOST /auth-api/_fetchListUserAvatarsFile- _fetchListUserAvatarsFile
linkedin-jobapplication-service Service
POST /jobApplication-api/deleteJobApplication- deleteJobApplicationPOST /jobApplication-api/getJobApplication- getJobApplicationPOST /jobApplication-api/updateJobPosting- updateJobPostingPOST /jobApplication-api/deleteJobPosting- deleteJobPostingPOST /jobApplication-api/getJobPosting- getJobPostingPOST /jobApplication-api/updateJobApplication- updateJobApplicationPOST /jobApplication-api/createJobApplication- createJobApplicationPOST /jobApplication-api/listJobPostings- listJobPostingsPOST /jobApplication-api/listJobApplications- listJobApplicationsPOST /jobApplication-api/createJobPosting- createJobPostingPOST /jobApplication-api/_fetchListJobPosting- _fetchListJobPostingPOST /jobApplication-api/_fetchListJobApplication- _fetchListJobApplication
linkedin-networking-service Service
POST /networking-api/createConnection- createConnectionPOST /networking-api/deleteConnectionRequest- deleteConnectionRequestPOST /networking-api/updateConnectionRequest- updateConnectionRequestPOST /networking-api/listConnections- listConnectionsPOST /networking-api/listConnectionRequests- listConnectionRequestsPOST /networking-api/createConnectionRequest- createConnectionRequestPOST /networking-api/deleteConnection- deleteConnectionPOST /networking-api/getConnectionRequest- getConnectionRequestPOST /networking-api/getConnection- getConnectionPOST /networking-api/_fetchListConnection- _fetchListConnectionPOST /networking-api/_fetchListConnectionRequest- _fetchListConnectionRequest
linkedin-company-service Service
POST /company-api/getCompanyAdmin- getCompanyAdminPOST /company-api/followCompany- followCompanyPOST /company-api/removeCompanyAdmin- removeCompanyAdminPOST /company-api/createCompany- createCompanyPOST /company-api/getCompany- getCompanyPOST /company-api/listCompanies- listCompaniesPOST /company-api/updateCompany- updateCompanyPOST /company-api/deleteCompany- deleteCompanyPOST /company-api/assignCompanyAdmin- assignCompanyAdminPOST /company-api/listCompanyAdmins- listCompanyAdminsPOST /company-api/getCompanyUpdate- getCompanyUpdatePOST /company-api/unfollowCompany- unfollowCompanyPOST /company-api/listCompanyFollowers- listCompanyFollowersPOST /company-api/createCompanyUpdate- createCompanyUpdatePOST /company-api/updateCompanyUpdate- updateCompanyUpdatePOST /company-api/getCompanyFollower- getCompanyFollowerPOST /company-api/deleteCompanyUpdate- deleteCompanyUpdatePOST /company-api/listCompanyUpdates- listCompanyUpdatesPOST /company-api/_fetchListCompanyFollower- _fetchListCompanyFollowerPOST /company-api/_fetchListCompanyUpdate- _fetchListCompanyUpdatePOST /company-api/_fetchListCompany- _fetchListCompanyPOST /company-api/_fetchListCompanyAdmin- _fetchListCompanyAdmin
linkedin-content-service Service
POST /content-api/createPost- createPostPOST /content-api/updateComment- updateCommentPOST /content-api/listPosts- listPostsPOST /content-api/likePost- likePostPOST /content-api/getPost- getPostPOST /content-api/createComment- createCommentPOST /content-api/deletePost- deletePostPOST /content-api/updatePost- updatePostPOST /content-api/listLikes- listLikesPOST /content-api/unlikePost- unlikePostPOST /content-api/listComments- listCommentsPOST /content-api/getComment- getCommentPOST /content-api/listUserPosts- listUserPostsPOST /content-api/deleteComment- deleteCommentPOST /content-api/_fetchListPost- _fetchListPostPOST /content-api/_fetchListLike- _fetchListLikePOST /content-api/_fetchListComment- _fetchListComment
linkedin-messaging-service Service
POST /messaging-api/listMessages- listMessagesPOST /messaging-api/updateConversation- updateConversationPOST /messaging-api/getMessage- getMessagePOST /messaging-api/getConversation- getConversationPOST /messaging-api/updateMessage- updateMessagePOST /messaging-api/deleteConversation- deleteConversationPOST /messaging-api/listConversations- listConversationsPOST /messaging-api/deleteMessage- deleteMessagePOST /messaging-api/createMessage- createMessagePOST /messaging-api/createConversation- createConversationPOST /messaging-api/_fetchListMessage- _fetchListMessagePOST /messaging-api/_fetchListConversation- _fetchListConversation
linkedin-profile-service Service
POST /profile-api/updateProfile- updateProfilePOST /profile-api/deleteProfile- deleteProfilePOST /profile-api/deleteLanguage- deleteLanguagePOST /profile-api/updateLanguage- updateLanguagePOST /profile-api/listProfiles- listProfilesPOST /profile-api/listLanguages- listLanguagesPOST /profile-api/getLanguage- getLanguagePOST /profile-api/createLanguage- createLanguagePOST /profile-api/createProfile- createProfilePOST /profile-api/getProfile- getProfilePOST /profile-api/deletePremuimSub- deletePremuimSubPOST /profile-api/updateCertification- updateCertificationPOST /profile-api/createPremuimSub- createPremuimSubPOST /profile-api/listCertifications- listCertificationsPOST /profile-api/updatePremuimSub- updatePremuimSubPOST /profile-api/getPremuimSub- getPremuimSubPOST /profile-api/createCertification- createCertificationPOST /profile-api/getCertification- getCertificationPOST /profile-api/listPremuimSub- listPremuimSubPOST /profile-api/deleteCertification- deleteCertificationPOST /profile-api/getPremiumsubscriptionPayment- getPremiumsubscriptionPaymentPOST /profile-api/listPremiumsubscriptionPayments- listPremiumsubscriptionPaymentsPOST /profile-api/createPremiumsubscriptionPayment- createPremiumsubscriptionPaymentPOST /profile-api/updatePremiumsubscriptionPayment- updatePremiumsubscriptionPaymentPOST /profile-api/deletePremiumsubscriptionPayment- deletePremiumsubscriptionPaymentPOST /profile-api/getPremiumsubscriptionPaymentByOrderId- getPremiumsubscriptionPaymentByOrderIdPOST /profile-api/getPremiumsubscriptionPaymentByPaymentId- getPremiumsubscriptionPaymentByPaymentIdPOST /profile-api/startPremiumsubscriptionPayment- startPremiumsubscriptionPaymentPOST /profile-api/refreshPremiumsubscriptionPayment- refreshPremiumsubscriptionPaymentPOST /profile-api/callbackPremiumsubscriptionPayment- callbackPremiumsubscriptionPaymentPOST /profile-api/getPaymentCustomerByUserId- getPaymentCustomerByUserIdPOST /profile-api/listPaymentCustomers- listPaymentCustomersPOST /profile-api/listPaymentCustomerMethods- listPaymentCustomerMethodsPOST /profile-api/_fetchListProfile- _fetchListProfilePOST /profile-api/_fetchListPremiumsubscription- _fetchListPremiumsubscriptionPOST /profile-api/_fetchListCertification- _fetchListCertificationPOST /profile-api/_fetchListLanguage- _fetchListLanguagePOST /profile-api/_fetchListSys_premiumsubscriptionPayment- _fetchListSys_premiumsubscriptionPaymentPOST /profile-api/_fetchListSys_paymentCustomer- _fetchListSys_paymentCustomerPOST /profile-api/_fetchListSys_paymentMethod- _fetchListSys_paymentMethod
linkedin-agenthub-service Service
POST /agentHub-api/getAgentOverride- getAgentOverridePOST /agentHub-api/listAgentOverrides- listAgentOverridesPOST /agentHub-api/updateAgentOverride- updateAgentOverridePOST /agentHub-api/createAgentOverride- createAgentOverridePOST /agentHub-api/deleteAgentOverride- deleteAgentOverridePOST /agentHub-api/listToolCatalog- listToolCatalogPOST /agentHub-api/getToolCatalogEntry- getToolCatalogEntryPOST /agentHub-api/listAgentExecutions- listAgentExecutionsPOST /agentHub-api/getAgentExecution- getAgentExecutionPOST /agentHub-api/_fetchListSys_agentOverride- _fetchListSys_agentOverridePOST /agentHub-api/_fetchListSys_agentExecution- _fetchListSys_agentExecutionPOST /agentHub-api/_fetchListSys_toolCatalog- _fetchListSys_toolCatalog
Getting Started
- Authentication: Start with the Auth Service to register and authenticate users
- Data Queries: Use the BFF Service for optimized read-only data queries
- Business Operations: Use individual business services for create/update/delete operations
Additional Resources
- Full documentation: …/intro.html
- Search: …/search.html
Generated by Mindbricks Genesis Engine