Workforce Operating System
WorkforceOS is a unified, web-based platform that enables businesses to efficiently manage employees, schedules, attendance, tasks, and workforce operations with full company-level data isolation. Designed for multi-role access, internal departments, AI-driven insights, and integrated communication via email and in-app notifications.
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
Workforce Operating System
Version : 1.0.355
WorkforceOS is a unified, web-based platform that enables businesses to efficiently manage employees, schedules, attendance, tasks, and workforce operations with full company-level data isolation. Designed for multi-role access, internal departments, AI-driven insights, and integrated communication via email and in-app notifications.
How to Use Project Documents
The Workforceos 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://workforceos.prw.mindbricks.com/auth-api |
| Staging | https://workforceos-stage.mindbricks.co/auth-api |
| Production | https://workforceos.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 Workforceos 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 Workforce Operating System 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
employeeProfile Service
Description: Manages extended employee profile data, employment/tax details, and employee-related documents/certifications for each company. Extends user identities with HR, department, and compliance info. Allows managers and admins to review employee profiles and documents…
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://workforceos.prw.mindbricks.com/employeeprofile-api |
| Staging | https://workforceos-stage.mindbricks.co/employeeprofile-api |
| Production | https://workforceos.mindbricks.co/employeeprofile-api |
scheduleManagement Service
Description: Microservice managing shift scheduling, shift templates, assignment of users/departments to shifts, and schedule conflict detection for WorkforceOS.
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://workforceos.prw.mindbricks.com/schedulemanagement-api |
| Staging | https://workforceos-stage.mindbricks.co/schedulemanagement-api |
| Production | https://workforceos.mindbricks.co/schedulemanagement-api |
attendanceManagement Service
Description: Handles employee attendance logging (check-in/out), attendance rules (lateness/absence/early-leave), real-time & historical logs, and publishes notification events. Enforces company data isolation, strict record uniqueness, and one-per-shift attendance rule.
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://workforceos.prw.mindbricks.com/attendancemanagement-api |
| Staging | https://workforceos-stage.mindbricks.co/attendancemanagement-api |
| Production | https://workforceos.mindbricks.co/attendancemanagement-api |
taskManagement Service
Description: Handles creation, assignment, update, and tracking of tasks tied to employees, shifts, or departments. Supports admins/managers assigning tasks; employees viewing and completing tasks; accountability tracking. Exposes APIs for creating, updating, deleting, and listing tasks with data enrichment. Data is .company-tenant-scoped…
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://workforceos.prw.mindbricks.com/taskmanagement-api |
| Staging | https://workforceos-stage.mindbricks.co/taskmanagement-api |
| Production | https://workforceos.mindbricks.co/taskmanagement-api |
leaveManagement Service
Description: Handles employee leave/absence requests, review/approval workflows, and automatic integration with shift assignments, ensuring company data isolation and leave history access for employees and managers/admins.
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://workforceos.prw.mindbricks.com/leavemanagement-api |
| Staging | https://workforceos-stage.mindbricks.co/leavemanagement-api |
| Production | https://workforceos.mindbricks.co/leavemanagement-api |
payrollReporting Service
Description: Handles payroll report records for employees based on calculated hours, overtime, absences from attendance/leave. Provides summary views by user/period/department, allows payment status entry (not processing). Employees can view their own reports. Company tenant scoped and RBAC-enforced.
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://workforceos.prw.mindbricks.com/payrollreporting-api |
| Staging | https://workforceos-stage.mindbricks.co/payrollreporting-api |
| Production | https://workforceos.mindbricks.co/payrollreporting-api |
announcementManagement Service
Description: Handles company-wide and department-specific announcements, supporting scheduled or immediate delivery. Enables admins/managers to create, edit, and manage rich-text announcements, assign audience (all/company/department/users), and triggers events for notification delivery. Employees see relevant announcements in history/detail. Fully tenant-scoped.
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://workforceos.prw.mindbricks.com/announcementmanagement-api |
| Staging | https://workforceos-stage.mindbricks.co/announcementmanagement-api |
| Production | https://workforceos.mindbricks.co/announcementmanagement-api |
aiWorkforceAnalytics Service
Description: Microservice for computing and delivering AI-powered workforce analytics (e.g., shift optimization, absenteeism insights, staffing trends) for eligible (subscribed) companies. Handles insight calculation, storage, and secure distribution to authorized users. Publishes insight alerts/events for notifications. Strictly enforces company data isolation and subscription gating on all features.
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://workforceos.prw.mindbricks.com/aiworkforceanalytics-api |
| Staging | https://workforceos-stage.mindbricks.co/aiworkforceanalytics-api |
| Production | https://workforceos.mindbricks.co/aiworkforceanalytics-api |
subscriptionManagement Service
Description: Manages company AI subscriptions through Stripe payments. Companies must pay via Stripe to activate AI features—no manual subscription creation allowed. Handles the full Stripe payment lifecycle: checkout, payment confirmation, activation, and cancellation. The subscription status is entirely driven by Stripe webhook events. SuperAdmin/saasAdmin bypass payment for platform management.
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://workforceos.prw.mindbricks.com/subscriptionmanagement-api |
| Staging | https://workforceos-stage.mindbricks.co/subscriptionmanagement-api |
| Production | https://workforceos.mindbricks.co/subscriptionmanagement-api |
agentHub Service
Description: AI Agent Hub
Documentation:
Base URL Examples:
| Environment | URL |
|---|---|
| Preview | https://workforceos.prw.mindbricks.com/agenthub-api |
| Staging | https://workforceos-stage.mindbricks.co/agenthub-api |
| Production | https://workforceos.mindbricks.co/agenthub-api |
Connect via MCP (Model Context Protocol)
All backend services in the Workforceos 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://workforceos.prw.mindbricks.com/mcpbff-api/mcp |
https://workforceos.prw.mindbricks.com/mcpbff-api/mcp/sse |
| Staging | https://workforceos-stage.mindbricks.co/mcpbff-api/mcp |
https://workforceos-stage.mindbricks.co/mcpbff-api/mcp/sse |
| Production | https://workforceos.mindbricks.co/mcpbff-api/mcp |
https://workforceos.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": {
"workforceos": {
"url": "https://workforceos.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": {
"workforceos": {
"url": "https://workforceos.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 Workforce Operating System 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: Workforce Operating System
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
- EmployeeProfile Service: EmployeeProfile Service
- ScheduleManagement Service: ScheduleManagement Service
- AttendanceManagement Service: AttendanceManagement Service
- TaskManagement Service: TaskManagement Service
- LeaveManagement Service: LeaveManagement Service
- PayrollReporting Service: PayrollReporting Service
- AnnouncementManagement Service: AnnouncementManagement Service
- AiWorkforceAnalytics Service: AiWorkforceAnalytics Service
- SubscriptionManagement Service: SubscriptionManagement Service
- SubscriptionManagement Service CompanySubscription Payment Flow: SubscriptionManagement Service CompanySubscription 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
- userGroup Design: Documentation
- userGroupMember Design: Documentation
- company Design: Documentation
- userAvatarsFile Design: Documentation
- companyAvatarsFile 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 - registerCompanyOwner API: Business API Design Specification -
Register Companyowner - registerCompanyUser API: Business API Design Specification -
Register Companyuser - createCompany API: Business API Design Specification -
Create Company - getCompany API: Business API Design Specification -
Get Company - getCompanyHome API: Business API Design Specification -
Get Companyhome - getCompanyProfile API: Business API Design Specification -
Get Companyprofile - getCompanyAccount API: Business API Design Specification -
Get Companyaccount - listCompaniesAccounts API: Business API Design Specification -
List Companiesaccounts - listBriefCompanies API: Business API Design Specification -
List Briefcompanies - getBriefCompany API: Business API Design Specification -
Get Briefcompany - updateCompany API: Business API Design Specification -
Update Company - deleteCompany API: Business API Design Specification -
Delete Company - createUserGroup API: Business API Design Specification -
Create Usergroup - updateUserGroup API: Business API Design Specification -
Update Usergroup - deleteUserGroup API: Business API Design Specification -
Delete Usergroup - getUserGroup API: Business API Design Specification -
Get Usergroup - listUserGroups API: Business API Design Specification -
List Usergroups - getUserGroupMember API: Business API Design Specification -
Get Usergroupmember - createUserGroupMember API: Business API Design Specification -
Create Usergroupmember - deleteUserGroupMember API: Business API Design Specification -
Delete Usergroupmember - listUserGroupMembers API: Business API Design Specification -
List Usergroupmembers - getUserAvatarsFile API: Business API Design Specification -
Get Useravatarsfile - listUserAvatarsFiles API: Business API Design Specification -
List Useravatarsfiles - deleteUserAvatarsFile API: Business API Design Specification -
Delete Useravatarsfile - getCompanyAvatarsFile API: Business API Design Specification -
Get Companyavatarsfile - listCompanyAvatarsFiles API: Business API Design Specification -
List Companyavatarsfiles - deleteCompanyAvatarsFile API: Business API Design Specification -
Delete Companyavatarsfile
Database Buckets
- userAvatars Bucket: Database Bucket Design Specification -
userAvatars - companyAvatars Bucket: Database Bucket Design Specification -
companyAvatars - Service Library: Service Library -
auth
EmployeeProfile Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- employeeProfile Design: Documentation
- employeeDocument Design: Documentation
Business APIs
- createEmployeeProfile API: Business API Design Specification -
Create Employeeprofile - updateEmployeeProfile API: Business API Design Specification -
Update Employeeprofile - getEmployeeProfile API: Business API Design Specification -
Get Employeeprofile - listEmployeeProfiles API: Business API Design Specification -
List Employeeprofiles - createEmployeeDocument API: Business API Design Specification -
Create Employeedocument - updateEmployeeDocument API: Business API Design Specification -
Update Employeedocument - getEmployeeDocument API: Business API Design Specification -
Get Employeedocument - listEmployeeDocuments API: Business API Design Specification -
List Employeedocuments - deleteEmployeeProfile API: Business API Design Specification -
Delete Employeeprofile - deleteEmployeeDocument API: Business API Design Specification -
Delete Employeedocument - Service Library: Service Library -
employeeProfile
ScheduleManagement Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- shiftTemplate Design: Documentation
- shift Design: Documentation
Business APIs
- createShiftTemplate API: Business API Design Specification -
Create Shifttemplate - updateShiftTemplate API: Business API Design Specification -
Update Shifttemplate - deleteShiftTemplate API: Business API Design Specification -
Delete Shifttemplate - getShiftTemplate API: Business API Design Specification -
Get Shifttemplate - listShiftTemplates API: Business API Design Specification -
List Shifttemplates - createShift API: Business API Design Specification -
Create Shift - updateShift API: Business API Design Specification -
Update Shift - deleteShift API: Business API Design Specification -
Delete Shift - getShift API: Business API Design Specification -
Get Shift - listShifts API: Business API Design Specification -
List Shifts - Service Library: Service Library -
scheduleManagement
AttendanceManagement Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- attendanceRecord Design: Documentation
Business APIs
- checkInAttendance API: Business API Design Specification -
Check Inattendance - checkOutAttendance API: Business API Design Specification -
Check Outattendance - markAttendanceAbsent API: Business API Design Specification -
Mark Attendanceabsent - getAttendanceRecord API: Business API Design Specification -
Get Attendancerecord - listAttendanceRecords API: Business API Design Specification -
List Attendancerecords - Service Library: Service Library -
attendanceManagement
TaskManagement Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- taskAssignment Design: Documentation
- individualTask Design: Documentation
Business APIs
- createTaskAssignment API: Business API Design Specification -
Create Taskassignment - listMyIndividualTasks API: Business API Design Specification -
List Myindividualtasks - getTaskAssignmentWithProgress API: Business API Design Specification -
Get Taskassignmentwithprogress - getMyIndividualTask API: Business API Design Specification -
Get Myindividualtask - listTaskAssignments API: Business API Design Specification -
List Taskassignments - deleteTaskAssignment API: Business API Design Specification -
Delete Taskassignment - updateIndividualTask API: Business API Design Specification -
Update Individualtask - updateTaskAssignment API: Business API Design Specification -
Update Taskassignment - createIndividualTask API: Business API Design Specification -
Create Individualtask - deleteIndividualTask API: Business API Design Specification -
Delete Individualtask - Service Library: Service Library -
taskManagement
LeaveManagement Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- leaveRequest Design: Documentation
Business APIs
- createLeaveRequest API: Business API Design Specification -
Create Leaverequest - updateLeaveRequest API: Business API Design Specification -
Update Leaverequest - deleteLeaveRequest API: Business API Design Specification -
Delete Leaverequest - getLeaveRequest API: Business API Design Specification -
Get Leaverequest - listLeaveRequests API: Business API Design Specification -
List Leaverequests - listMyLeaveRequests API: Business API Design Specification -
List Myleaverequests - getMyLeaveRequest API: Business API Design Specification -
Get Myleaverequest - Service Library: Service Library -
leaveManagement
PayrollReporting Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- payrollReport Design: Documentation
Business APIs
- createPayrollReport API: Business API Design Specification -
Create Payrollreport - updatePayrollReport API: Business API Design Specification -
Update Payrollreport - getPayrollReport API: Business API Design Specification -
Get Payrollreport - listPayrollReports API: Business API Design Specification -
List Payrollreports - Service Library: Service Library -
payrollReporting
AnnouncementManagement Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- announcement Design: Documentation
Business APIs
- createAnnouncement API: Business API Design Specification -
Create Announcement - updateAnnouncement API: Business API Design Specification -
Update Announcement - deleteAnnouncement API: Business API Design Specification -
Delete Announcement - getAnnouncement API: Business API Design Specification -
Get Announcement - listAnnouncements API: Business API Design Specification -
List Announcements - processScheduledAnnouncements API: Business API Design Specification -
Process Scheduledannouncements - Service Library: Service Library -
announcementManagement
AiWorkforceAnalytics Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- aiInsight Design: Documentation
Business APIs
- createAiInsight API: Business API Design Specification -
Create Aiinsight - updateAiInsight API: Business API Design Specification -
Update Aiinsight - getAiInsight API: Business API Design Specification -
Get Aiinsight - listAiInsights API: Business API Design Specification -
List Aiinsights - deleteAiInsight API: Business API Design Specification -
Delete Aiinsight - saveInsight API: Business API Design Specification -
Save Insight - saveAiInsight API: Business API Design Specification -
Save Aiinsight
AI Agents
- insightGenerator Agent: AI Agent Design Specification -
insightGenerator - Service Library: Service Library -
aiWorkforceAnalytics
SubscriptionManagement Service
- Service Design: Service Design Specification
- REST API Guide: REST API GUIDE
- Event Guide: .
Data Objects
- companySubscription Design: Documentation
- sys_companySubscriptionPayment Design: Documentation
- sys_paymentCustomer Design: Documentation
- sys_paymentMethod Design: Documentation
Business APIs
- createCompanySubscription API: Business API Design Specification -
Create Companysubscription - updateCompanySubscription API: Business API Design Specification -
Update Companysubscription - getCompanySubscription API: Business API Design Specification -
Get Companysubscription - listCompanySubscriptions API: Business API Design Specification -
List Companysubscriptions - deleteCompanySubscription API: Business API Design Specification -
Delete Companysubscription - cancelCompanySubscription API: Business API Design Specification -
Cancel Companysubscription - getCompanySubscriptionPayment API: Business API Design Specification -
Get Companysubscriptionpayment - listCompanySubscriptionPayments API: Business API Design Specification -
List Companysubscriptionpayments - createCompanySubscriptionPayment API: Business API Design Specification -
Create Companysubscriptionpayment - updateCompanySubscriptionPayment API: Business API Design Specification -
Update Companysubscriptionpayment - deleteCompanySubscriptionPayment API: Business API Design Specification -
Delete Companysubscriptionpayment - getCompanySubscriptionPaymentByOrderId API: Business API Design Specification -
Get Companysubscriptionpaymentbyorderid - getCompanySubscriptionPaymentByPaymentId API: Business API Design Specification -
Get Companysubscriptionpaymentbypaymentid - startCompanySubscriptionPayment API: Business API Design Specification -
Start Companysubscriptionpayment - refreshCompanySubscriptionPayment API: Business API Design Specification -
Refresh Companysubscriptionpayment - callbackCompanySubscriptionPayment API: Business API Design Specification -
Callback Companysubscriptionpayment - 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 -
subscriptionManagement
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
AI Agents
- workforceAssistant Agent: AI Agent Design Specification -
workforceAssistant - workforceInsightGenerator Agent: AI Agent Design Specification -
workforceInsightGenerator
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
workforceos-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/registerCompanyOwner- registerCompanyOwnerPOST /auth-api/registerCompanyUser- registerCompanyUserPOST /auth-api/createCompany- createCompanyPOST /auth-api/getCompany- getCompanyPOST /auth-api/getCompanyHome- getCompanyHomePOST /auth-api/getCompanyProfile- getCompanyProfilePOST /auth-api/getCompanyAccount- getCompanyAccountPOST /auth-api/listCompaniesAccounts- listCompaniesAccountsPOST /auth-api/listBriefCompanies- listBriefCompaniesPOST /auth-api/getBriefCompany- getBriefCompanyPOST /auth-api/updateCompany- updateCompanyPOST /auth-api/deleteCompany- deleteCompanyPOST /auth-api/createUserGroup- createUserGroupPOST /auth-api/updateUserGroup- updateUserGroupPOST /auth-api/deleteUserGroup- deleteUserGroupPOST /auth-api/getUserGroup- getUserGroupPOST /auth-api/listUserGroups- listUserGroupsPOST /auth-api/getUserGroupMember- getUserGroupMemberPOST /auth-api/createUserGroupMember- createUserGroupMemberPOST /auth-api/deleteUserGroupMember- deleteUserGroupMemberPOST /auth-api/listUserGroupMembers- listUserGroupMembersPOST /auth-api/getUserAvatarsFile- getUserAvatarsFilePOST /auth-api/listUserAvatarsFiles- listUserAvatarsFilesPOST /auth-api/deleteUserAvatarsFile- deleteUserAvatarsFilePOST /auth-api/getCompanyAvatarsFile- getCompanyAvatarsFilePOST /auth-api/listCompanyAvatarsFiles- listCompanyAvatarsFilesPOST /auth-api/deleteCompanyAvatarsFile- deleteCompanyAvatarsFilePOST /auth-api/_fetchListCompany- _fetchListCompanyPOST /auth-api/_fetchListUserAvatarsFile- _fetchListUserAvatarsFilePOST /auth-api/_fetchListCompanyAvatarsFile- _fetchListCompanyAvatarsFile
workforceos-employeeprofile-service Service
POST /employeeProfile-api/createEmployeeProfile- createEmployeeProfilePOST /employeeProfile-api/updateEmployeeProfile- updateEmployeeProfilePOST /employeeProfile-api/getEmployeeProfile- getEmployeeProfilePOST /employeeProfile-api/listEmployeeProfiles- listEmployeeProfilesPOST /employeeProfile-api/createEmployeeDocument- createEmployeeDocumentPOST /employeeProfile-api/updateEmployeeDocument- updateEmployeeDocumentPOST /employeeProfile-api/getEmployeeDocument- getEmployeeDocumentPOST /employeeProfile-api/listEmployeeDocuments- listEmployeeDocumentsPOST /employeeProfile-api/deleteEmployeeProfile- deleteEmployeeProfilePOST /employeeProfile-api/deleteEmployeeDocument- deleteEmployeeDocumentPOST /employeeProfile-api/_fetchListEmployeeProfile- _fetchListEmployeeProfilePOST /employeeProfile-api/_fetchListEmployeeDocument- _fetchListEmployeeDocument
workforceos-schedulemanagement-service Service
POST /scheduleManagement-api/createShiftTemplate- createShiftTemplatePOST /scheduleManagement-api/updateShiftTemplate- updateShiftTemplatePOST /scheduleManagement-api/deleteShiftTemplate- deleteShiftTemplatePOST /scheduleManagement-api/getShiftTemplate- getShiftTemplatePOST /scheduleManagement-api/listShiftTemplates- listShiftTemplatesPOST /scheduleManagement-api/createShift- createShiftPOST /scheduleManagement-api/updateShift- updateShiftPOST /scheduleManagement-api/deleteShift- deleteShiftPOST /scheduleManagement-api/getShift- getShiftPOST /scheduleManagement-api/listShifts- listShiftsPOST /scheduleManagement-api/_fetchListShiftTemplate- _fetchListShiftTemplatePOST /scheduleManagement-api/_fetchListShift- _fetchListShift
workforceos-attendancemanagement-service Service
POST /attendanceManagement-api/checkInAttendance- checkInAttendancePOST /attendanceManagement-api/checkOutAttendance- checkOutAttendancePOST /attendanceManagement-api/markAttendanceAbsent- markAttendanceAbsentPOST /attendanceManagement-api/getAttendanceRecord- getAttendanceRecordPOST /attendanceManagement-api/listAttendanceRecords- listAttendanceRecordsPOST /attendanceManagement-api/_fetchListAttendanceRecord- _fetchListAttendanceRecord
workforceos-taskmanagement-service Service
POST /taskManagement-api/createTaskAssignment- createTaskAssignmentPOST /taskManagement-api/listMyIndividualTasks- listMyIndividualTasksPOST /taskManagement-api/getTaskAssignmentWithProgress- getTaskAssignmentWithProgressPOST /taskManagement-api/getMyIndividualTask- getMyIndividualTaskPOST /taskManagement-api/listTaskAssignments- listTaskAssignmentsPOST /taskManagement-api/deleteTaskAssignment- deleteTaskAssignmentPOST /taskManagement-api/updateIndividualTask- updateIndividualTaskPOST /taskManagement-api/updateTaskAssignment- updateTaskAssignmentPOST /taskManagement-api/createIndividualTask- createIndividualTaskPOST /taskManagement-api/deleteIndividualTask- deleteIndividualTaskPOST /taskManagement-api/_fetchListTaskAssignment- _fetchListTaskAssignmentPOST /taskManagement-api/_fetchListIndividualTask- _fetchListIndividualTask
workforceos-leavemanagement-service Service
POST /leaveManagement-api/createLeaveRequest- createLeaveRequestPOST /leaveManagement-api/updateLeaveRequest- updateLeaveRequestPOST /leaveManagement-api/deleteLeaveRequest- deleteLeaveRequestPOST /leaveManagement-api/getLeaveRequest- getLeaveRequestPOST /leaveManagement-api/listLeaveRequests- listLeaveRequestsPOST /leaveManagement-api/listMyLeaveRequests- listMyLeaveRequestsPOST /leaveManagement-api/getMyLeaveRequest- getMyLeaveRequestPOST /leaveManagement-api/_fetchListLeaveRequest- _fetchListLeaveRequest
workforceos-payrollreporting-service Service
POST /payrollReporting-api/createPayrollReport- createPayrollReportPOST /payrollReporting-api/updatePayrollReport- updatePayrollReportPOST /payrollReporting-api/getPayrollReport- getPayrollReportPOST /payrollReporting-api/listPayrollReports- listPayrollReportsPOST /payrollReporting-api/_fetchListPayrollReport- _fetchListPayrollReport
workforceos-announcementmanagement-service Service
POST /announcementManagement-api/createAnnouncement- createAnnouncementPOST /announcementManagement-api/updateAnnouncement- updateAnnouncementPOST /announcementManagement-api/deleteAnnouncement- deleteAnnouncementPOST /announcementManagement-api/getAnnouncement- getAnnouncementPOST /announcementManagement-api/listAnnouncements- listAnnouncementsPOST /announcementManagement-api/processScheduledAnnouncements- processScheduledAnnouncementsPOST /announcementManagement-api/_fetchListAnnouncement- _fetchListAnnouncement
workforceos-aiworkforceanalytics-service Service
POST /aiWorkforceAnalytics-api/createAiInsight- createAiInsightPOST /aiWorkforceAnalytics-api/getAiInsight- getAiInsightPOST /aiWorkforceAnalytics-api/listAiInsights- listAiInsightsPOST /aiWorkforceAnalytics-api/saveInsight- saveInsightPOST /aiWorkforceAnalytics-api/saveAiInsight- saveAiInsightPOST /aiWorkforceAnalytics-api/_fetchListAiInsight- _fetchListAiInsight
workforceos-subscriptionmanagement-service Service
POST /subscriptionManagement-api/createCompanySubscription- createCompanySubscriptionPOST /subscriptionManagement-api/updateCompanySubscription- updateCompanySubscriptionPOST /subscriptionManagement-api/getCompanySubscription- getCompanySubscriptionPOST /subscriptionManagement-api/listCompanySubscriptions- listCompanySubscriptionsPOST /subscriptionManagement-api/deleteCompanySubscription- deleteCompanySubscriptionPOST /subscriptionManagement-api/cancelCompanySubscription- cancelCompanySubscriptionPOST /subscriptionManagement-api/getCompanySubscriptionPayment- getCompanySubscriptionPaymentPOST /subscriptionManagement-api/listCompanySubscriptionPayments- listCompanySubscriptionPaymentsPOST /subscriptionManagement-api/createCompanySubscriptionPayment- createCompanySubscriptionPaymentPOST /subscriptionManagement-api/updateCompanySubscriptionPayment- updateCompanySubscriptionPaymentPOST /subscriptionManagement-api/deleteCompanySubscriptionPayment- deleteCompanySubscriptionPaymentPOST /subscriptionManagement-api/getCompanySubscriptionPaymentByOrderId- getCompanySubscriptionPaymentByOrderIdPOST /subscriptionManagement-api/getCompanySubscriptionPaymentByPaymentId- getCompanySubscriptionPaymentByPaymentIdPOST /subscriptionManagement-api/startCompanySubscriptionPayment- startCompanySubscriptionPaymentPOST /subscriptionManagement-api/refreshCompanySubscriptionPayment- refreshCompanySubscriptionPaymentPOST /subscriptionManagement-api/callbackCompanySubscriptionPayment- callbackCompanySubscriptionPaymentPOST /subscriptionManagement-api/getPaymentCustomerByUserId- getPaymentCustomerByUserIdPOST /subscriptionManagement-api/listPaymentCustomers- listPaymentCustomersPOST /subscriptionManagement-api/listPaymentCustomerMethods- listPaymentCustomerMethodsPOST /subscriptionManagement-api/_fetchListCompanySubscription- _fetchListCompanySubscriptionPOST /subscriptionManagement-api/_fetchListSys_companySubscriptionPayment- _fetchListSys_companySubscriptionPaymentPOST /subscriptionManagement-api/_fetchListSys_paymentCustomer- _fetchListSys_paymentCustomerPOST /subscriptionManagement-api/_fetchListSys_paymentMethod- _fetchListSys_paymentMethod
workforceos-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