{"openapi":"3.0.0","info":{"title":"SpireStock API","version":"1.0.0","description":"\n## SpireStock — Sales & Distribution Management API\n\nMulti-tenant SaaS platform for managing sales & distribution operations across India.\n\n### Authentication\n\nTwo credentials are accepted.\n\n**API key (recommended for servers and integrations).** Create one in the\ndashboard under Developer → API Keys, then send it on every request:\n\n```\nX-API-Key: df_your_key_here\n```\n\nKeys do not expire with a browser session and are the only credential that\nworks headlessly — /auth/login requires a Cloudflare Turnstile token that only\na browser can obtain, so a server cannot log in. Keys are scoped\n(`read`/`write` plus optional resource scopes) and cannot reach\n/auth, /developer, /platform, /super-admin, /portal, /driver-app or /support.\n\n**JWT bearer token (browser sessions).** Obtained from /auth/login and valid\nfor 15 days:\n\n```\nAuthorization: Bearer <your-jwt-token>\n```\n\nOnly one JWT is active per user at a time — signing in again invalidates the\nprevious token. Use an API key for anything long-running.\n\n### User-Agent requirement\n\nRequests without an API key must send a descriptive User-Agent of at least 10\ncharacters. Anonymous or tool-default agents (`curl/8.x`,\n`python-requests/2.x`, Node's `node`) are rejected with 403. Requests\ncarrying `X-API-Key` are exempt — the key is the credential.\n\n### Integration Guide\nThis API can be integrated with:\n- **SAP** — via REST API calls for order sync, product catalog, and financial data\n- **Zoho CRM** — webhook-based order notifications, customer sync\n- **Oracle ERP** — batch import/export via Excel endpoints\n- **Custom Apps** — full REST API with JSON request/response\n\n### Rate Limits\n- Signup: 5 requests/hour\n- Login: 20 requests/15 minutes\n- All other endpoints: 120 requests/minute and 2,000 requests/hour per caller\n- Exports: 5 requests/minute · Reports: 20 requests/minute\n\nAPI keys are metered on their own budget, separate from the admin who issued\nthem. Every response carries `X-RateLimit-Limit` and\n`X-RateLimit-Remaining`.\n\n### Multi-Tenancy\nEach API request is automatically scoped to your organization. You can only access data belonging to your workspace.\n      ","contact":{"name":"SpireStock Support","email":"support@spirestock.com"},"license":{"name":"Proprietary"}},"servers":[{"url":"https://api.spirestock.com/api/v1","description":"API v1"}],"components":{"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT","description":"Enter your JWT token obtained from login"},"ApiKeyAuth":{"type":"apiKey","in":"header","name":"X-API-Key","description":"Workspace API key from Developer → API Keys. The credential for servers and integrations."},"PlatformAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT","description":"Platform admin JWT (separate from tenant auth)"}},"schemas":{"Error":{"type":"object","properties":{"response_code":{"type":"integer","example":400},"message":{"type":"string","example":"Validation error"}}},"Pagination":{"type":"object","properties":{"total":{"type":"integer"},"page":{"type":"integer"},"limit":{"type":"integer"},"total_pages":{"type":"integer"}}},"User":{"type":"object","properties":{"id":{"type":"integer"},"first_name":{"type":"string"},"last_name":{"type":"string"},"official_email":{"type":"string","format":"email"},"primary_contact_number":{"type":"string"},"role_id":{"type":"integer"},"role_name":{"type":"string"},"organization_id":{"type":"integer"},"status":{"type":"integer","enum":[0,1]}}},"Order":{"type":"object","properties":{"id":{"type":"integer"},"order_code":{"type":"string"},"user_id":{"type":"integer"},"user_name":{"type":"string"},"order_date":{"type":"string","format":"date-time"},"order_status":{"type":"integer","enum":[1,2,3,4],"description":"1=Initiated, 2=Forwarded, 3=Approved, 4=Delivered"},"order_total_amount":{"type":"number"},"order_items_count":{"type":"integer"},"production_unit_id":{"type":"integer"},"mode_of_payment":{"type":"string"}}},"Product":{"type":"object","properties":{"id":{"type":"integer"},"product_name":{"type":"string"},"product_class_id":{"type":"integer"},"product_hsn":{"type":"string"},"status":{"type":"integer"}}},"Workspace":{"type":"object","properties":{"slug":{"type":"string"},"display_name":{"type":"string"},"plan":{"type":"string","enum":["free","starter","pro"]},"status":{"type":"integer","enum":[0,1,2],"description":"0=suspended, 1=active, 2=trial"}}}}},"security":[{"ApiKeyAuth":[]},{"BearerAuth":[]}],"tags":[{"name":"Auth","description":"Authentication — login, OTP, magic link, logout"},{"name":"Signup","description":"Self-service workspace registration"},{"name":"Dashboard","description":"Dashboard statistics and analytics"},{"name":"Orders","description":"Order management — CRUD, status flow, export"},{"name":"Users","description":"User management — distributors, retailers, employees"},{"name":"Products","description":"Product catalog and variants"},{"name":"Schemes","description":"Incentive schemes — flat, bulk, quantitative"},{"name":"Crates","description":"Returnable crate tracking and ledger"},{"name":"Logistics","description":"Vehicles, drivers, routes, zones, towns"},{"name":"Reports","description":"Sales, attendance, MIS, and analytics reports"},{"name":"Accounts","description":"Financial ledger and payment tracking"},{"name":"Holidays","description":"Holiday calendar management"},{"name":"Leaves","description":"Leave management — apply, approve, reject"},{"name":"FOC","description":"Free of Cost requests and approvals"},{"name":"Approvals","description":"Unified approval dashboard"},{"name":"Grievances","description":"Customer complaints and feedback"},{"name":"Notifications","description":"Bulk notification sending"},{"name":"Workspace","description":"Workspace settings, members, invites"},{"name":"Exports","description":"Export data as XLSX or PDF"},{"name":"Imports","description":"Import data from Excel files"},{"name":"Uploads","description":"File upload to S3"},{"name":"Masters","description":"Master data — organizations, zones, towns, etc."},{"name":"Helpers","description":"Cascading dropdown data for forms"},{"name":"Tracking","description":"User location tracking and attendance"},{"name":"Sales Plan","description":"Sales target planning"},{"name":"Payments","description":"Payment collection tracking"},{"name":"Developer","description":"API keys and webhook endpoints (workspace admins, session token only)"},{"name":"Platform","description":"Platform admin — tenant management (super admin only)"}],"paths":{"/portal/login":{"post":{"tags":["Portal"],"summary":"Create Login","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/portal/dashboard":{"get":{"tags":["Portal"],"summary":"Retrieve Dashboard","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/portal/orders":{"get":{"tags":["Portal"],"summary":"Retrieve Orders","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Portal"],"summary":"Create Orders","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/portal/orders/{id}":{"get":{"tags":["Portal"],"summary":"Retrieve Orders","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/portal/ledger":{"get":{"tags":["Portal"],"summary":"Retrieve Ledger","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/portal/products":{"get":{"tags":["Portal"],"summary":"Retrieve Products","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/portal/crates":{"get":{"tags":["Portal"],"summary":"Retrieve Crates","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/portal/notifications":{"get":{"tags":["Portal"],"summary":"Retrieve Notifications","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/portal/notifications/read-all":{"patch":{"tags":["Portal"],"summary":"Update Notifications read All","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/portal/notifications/{id}/read":{"patch":{"tags":["Portal"],"summary":"Update Notifications read","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/portal/notifications/device-token":{"post":{"tags":["Portal"],"summary":"Create Notifications device Token","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Portal"],"summary":"Delete Notifications device Token","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/portal/profile":{"get":{"tags":["Portal"],"summary":"Retrieve Profile","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"patch":{"tags":["Portal"],"summary":"Update Profile","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Portal"],"summary":"Delete Profile","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/portal/change-password":{"put":{"tags":["Portal"],"summary":"Update Change Password","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/portal/ai-insight":{"get":{"tags":["Portal"],"summary":"Retrieve Ai Insight","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/subscriptions":{"get":{"tags":["Subscriptions"],"summary":"Retrieve Subscriptions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Subscriptions"],"summary":"Create Subscriptions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/subscriptions/process-daily":{"post":{"tags":["Subscriptions"],"summary":"Create Process Daily","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/subscriptions/delivery-logs":{"get":{"tags":["Subscriptions"],"summary":"Retrieve Delivery Logs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/subscriptions/payments":{"get":{"tags":["Subscriptions"],"summary":"Retrieve Payments","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Subscriptions"],"summary":"Create Payments","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/subscriptions/payments/{id}/receipt":{"patch":{"tags":["Subscriptions"],"summary":"Update Payments receipt","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/subscriptions/payments/{id}/verify":{"patch":{"tags":["Subscriptions"],"summary":"Update Payments verify","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/subscriptions/{id}/pause":{"patch":{"tags":["Subscriptions"],"summary":"Update Pause","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/subscriptions/{id}/resume":{"patch":{"tags":["Subscriptions"],"summary":"Update Resume","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/subscriptions/{id}/vacation":{"patch":{"tags":["Subscriptions"],"summary":"Update Vacation","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/subscriptions/{id}":{"put":{"tags":["Subscriptions"],"summary":"Update Subscriptions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Subscriptions"],"summary":"Delete Subscriptions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/subscriptions/{subscriptionId}/invoice":{"get":{"tags":["Subscriptions"],"summary":"Retrieve Invoice","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"subscriptionId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/login":{"post":{"tags":["Driver App"],"summary":"Create Login","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/profile":{"get":{"tags":["Driver App"],"summary":"Retrieve Profile","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/attendance":{"get":{"tags":["Driver App"],"summary":"Retrieve Attendance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Driver App"],"summary":"Create Attendance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/today-deliveries":{"get":{"tags":["Driver App"],"summary":"Retrieve Today Deliveries","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/ai-insight":{"get":{"tags":["Driver App"],"summary":"Retrieve Ai Insight","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/history":{"get":{"tags":["Driver App"],"summary":"Retrieve History","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/proof-photo":{"post":{"tags":["Driver App"],"summary":"Create Proof Photo","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/deliver/{orderId}":{"post":{"tags":["Driver App"],"summary":"Create Deliver","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[{"name":"orderId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/collect-payment":{"post":{"tags":["Driver App"],"summary":"Create Collect Payment","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/collect-crates":{"post":{"tags":["Driver App"],"summary":"Create Collect Crates","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/update-location":{"post":{"tags":["Driver App"],"summary":"Create Update Location","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/scan/verify-order":{"post":{"tags":["Driver App"],"summary":"Create Scan verify Order","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/scan/verify-batch":{"post":{"tags":["Driver App"],"summary":"Create Scan verify Batch","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/scan/crate":{"post":{"tags":["Driver App"],"summary":"Create Scan crate","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/scan/log":{"post":{"tags":["Driver App"],"summary":"Create Scan log","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/holidays":{"get":{"tags":["Driver App"],"summary":"Retrieve Holidays","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/crates/summary":{"get":{"tags":["Driver App"],"summary":"Retrieve Crates summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/crates/ledger":{"get":{"tags":["Driver App"],"summary":"Retrieve Crates ledger","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/crates/monthly-summary":{"get":{"tags":["Driver App"],"summary":"Retrieve Crates monthly Summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/gamification/leaderboard":{"get":{"tags":["Driver App"],"summary":"Retrieve Gamification leaderboard","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/gamification/achievements":{"get":{"tags":["Driver App"],"summary":"Retrieve Gamification achievements","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/gamification/my-score":{"get":{"tags":["Driver App"],"summary":"Retrieve Gamification my Score","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/gamification/my-achievements":{"get":{"tags":["Driver App"],"summary":"Retrieve Gamification my Achievements","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/vehicle":{"get":{"tags":["Driver App"],"summary":"Retrieve Vehicle","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/notifications":{"get":{"tags":["Driver App"],"summary":"Retrieve Notifications","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/notifications/read-all":{"patch":{"tags":["Driver App"],"summary":"Update Notifications read All","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/notifications/{id}/read":{"patch":{"tags":["Driver App"],"summary":"Update Notifications read","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/support/sessions":{"get":{"tags":["Driver App"],"summary":"Retrieve Support sessions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/support/request":{"post":{"tags":["Driver App"],"summary":"Create Support request","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/support/sessions/{id}":{"delete":{"tags":["Driver App"],"summary":"Delete Support sessions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/bug-report/attachment":{"post":{"tags":["Driver App"],"summary":"Create Bug Report attachment","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/bug-report":{"post":{"tags":["Driver App"],"summary":"Create Bug Report","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/ai/assistant":{"post":{"tags":["Driver App"],"summary":"Create Ai assistant","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/device-token":{"post":{"tags":["Driver App"],"summary":"Create Device Token","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Driver App"],"summary":"Delete Device Token","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/driver-app/change-password":{"put":{"tags":["Driver App"],"summary":"Update Change Password","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/beat-plans":{"get":{"tags":["Beat Plans"],"summary":"Retrieve Beat Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Beat Plans"],"summary":"Create Beat Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/beat-plans/{id}":{"put":{"tags":["Beat Plans"],"summary":"Update Beat Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/beat-plans/{id}/visit":{"post":{"tags":["Beat Plans"],"summary":"Create Visit","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/secondary-sales":{"get":{"tags":["Secondary Sales"],"summary":"Retrieve Secondary Sales","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Secondary Sales"],"summary":"Create Secondary Sales","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/secondary-sales/summary":{"get":{"tags":["Secondary Sales"],"summary":"Retrieve Summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/batches/expiring":{"get":{"tags":["Batches"],"summary":"Retrieve Expiring","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/batches":{"get":{"tags":["Batches"],"summary":"Retrieve Batches","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Batches"],"summary":"Create Batches","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/batches/{id}":{"put":{"tags":["Batches"],"summary":"Update Batches","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/public/whatsapp/webhook":{"get":{"tags":["Public"],"summary":"Retrieve Whatsapp webhook","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Public"],"summary":"Create Whatsapp webhook","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/public/blogs":{"get":{"tags":["Public"],"summary":"Retrieve Blogs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/public/blogs/{slug}":{"get":{"tags":["Public"],"summary":"Retrieve Blogs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/public/blog-categories":{"get":{"tags":["Public"],"summary":"Retrieve Blog Categories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/public/changelogs":{"get":{"tags":["Public"],"summary":"Retrieve Changelogs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/public/plans":{"get":{"tags":["Public"],"summary":"Retrieve Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/platform/setup/status":{"get":{"tags":["Platform"],"summary":"Retrieve Setup status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/platform/setup":{"post":{"tags":["Platform"],"summary":"Create Setup","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/platform/auth/otp/request":{"post":{"tags":["Platform"],"summary":"Create Auth otp request","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/platform/auth/otp/verify":{"post":{"tags":["Platform"],"summary":"Create Auth otp verify","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/platform/auth/magic-link/request":{"post":{"tags":["Platform"],"summary":"Create Auth magic Link request","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/platform/auth/magic-link/verify/{token}":{"get":{"tags":["Platform"],"summary":"Retrieve Auth magic Link verify","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/platform/auth/mobile/otp/request":{"post":{"tags":["Platform"],"summary":"Create Auth mobile otp request","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/platform/auth/mobile/magic-link/request":{"post":{"tags":["Platform"],"summary":"Create Auth mobile magic Link request","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/platform/tenants/{id}":{"get":{"tags":["Platform"],"summary":"Retrieve Tenants","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/platform/tenants/{id}/status":{"patch":{"tags":["Platform"],"summary":"Update Tenants status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/analytics":{"get":{"tags":["Super Admin"],"summary":"Retrieve Analytics","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/recent-signups":{"get":{"tags":["Super Admin"],"summary":"Retrieve Recent Signups","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/signup-analytics":{"get":{"tags":["Super Admin"],"summary":"Retrieve Signup Analytics","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/signup-events":{"get":{"tags":["Super Admin"],"summary":"Retrieve Signup Events","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/customers":{"get":{"tags":["Super Admin"],"summary":"Retrieve Customers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/customers/{id}":{"get":{"tags":["Super Admin"],"summary":"Retrieve Customers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Super Admin"],"summary":"Delete Customers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/customers/{id}/delete-preview":{"get":{"tags":["Super Admin"],"summary":"Retrieve Customers delete Preview","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/customers/{id}/status":{"patch":{"tags":["Super Admin"],"summary":"Update Customers status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/customers/{id}/plan":{"patch":{"tags":["Super Admin"],"summary":"Update Customers plan","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/customers/bulk-status":{"put":{"tags":["Super Admin"],"summary":"Update Customers bulk Status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/customers/bulk-delete":{"post":{"tags":["Super Admin"],"summary":"Create Customers bulk Delete","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/blogs":{"get":{"tags":["Super Admin"],"summary":"Retrieve Blogs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Super Admin"],"summary":"Create Blogs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/blogs/{id}":{"get":{"tags":["Super Admin"],"summary":"Retrieve Blogs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"put":{"tags":["Super Admin"],"summary":"Update Blogs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Super Admin"],"summary":"Delete Blogs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/blog-categories":{"get":{"tags":["Super Admin"],"summary":"Retrieve Blog Categories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Super Admin"],"summary":"Create Blog Categories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/blog-categories/{id}":{"delete":{"tags":["Super Admin"],"summary":"Delete Blog Categories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/blog-tags":{"get":{"tags":["Super Admin"],"summary":"Retrieve Blog Tags","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Super Admin"],"summary":"Create Blog Tags","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/blog-tags/{id}":{"delete":{"tags":["Super Admin"],"summary":"Delete Blog Tags","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/changelogs":{"get":{"tags":["Super Admin"],"summary":"Retrieve Changelogs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Super Admin"],"summary":"Create Changelogs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/changelogs/{id}":{"put":{"tags":["Super Admin"],"summary":"Update Changelogs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Super Admin"],"summary":"Delete Changelogs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/plans":{"get":{"tags":["Super Admin"],"summary":"Retrieve Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Super Admin"],"summary":"Create Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/plans/{id}":{"put":{"tags":["Super Admin"],"summary":"Update Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Super Admin"],"summary":"Delete Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/team":{"get":{"tags":["Super Admin"],"summary":"Retrieve Team","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Super Admin"],"summary":"Create Team","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/team/{id}":{"delete":{"tags":["Super Admin"],"summary":"Delete Team","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/org-update-requests":{"get":{"tags":["Super Admin"],"summary":"Retrieve Org Update Requests","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/org-update-requests/{id}":{"patch":{"tags":["Super Admin"],"summary":"Update Org Update Requests","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/support-sessions":{"get":{"tags":["Super Admin"],"summary":"Retrieve Support Sessions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/support-sessions/{id}/start":{"post":{"tags":["Super Admin"],"summary":"Create Support Sessions start","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/support-sessions/{id}/end":{"post":{"tags":["Super Admin"],"summary":"Create Support Sessions end","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/bug-reports":{"get":{"tags":["Super Admin"],"summary":"Retrieve Bug Reports","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/bug-reports/attempts":{"get":{"tags":["Super Admin"],"summary":"Retrieve Bug Reports attempts","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/bug-reports/{id}":{"patch":{"tags":["Super Admin"],"summary":"Update Bug Reports","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/settings/chatbot":{"get":{"tags":["Super Admin"],"summary":"Retrieve Settings chatbot","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"put":{"tags":["Super Admin"],"summary":"Update Settings chatbot","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/device-tokens":{"get":{"tags":["Super Admin"],"summary":"Retrieve Device Tokens","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Super Admin"],"summary":"Create Device Tokens","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Super Admin"],"summary":"Delete Device Tokens","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/notifications":{"get":{"tags":["Super Admin"],"summary":"Retrieve Notifications","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/notifications/read-all":{"patch":{"tags":["Super Admin"],"summary":"Update Notifications read All","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/notifications/{id}/read":{"patch":{"tags":["Super Admin"],"summary":"Update Notifications read","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/ai/assistant":{"post":{"tags":["Super Admin"],"summary":"Create Ai assistant","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/super-admin/ai/insights":{"get":{"tags":["Super Admin"],"summary":"Retrieve Ai insights","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"PlatformAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/workspace/public/{slug}":{"get":{"tags":["Workspace"],"summary":"Retrieve Public","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/workspace/check-subdomain/{subdomain}":{"get":{"tags":["Workspace"],"summary":"Retrieve Check Subdomain","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"subdomain","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/workspace/invites":{"get":{"tags":["Workspace"],"summary":"Retrieve Invites","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/workspace/invites/{id}":{"delete":{"tags":["Workspace"],"summary":"Delete Invites","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/workspace/members/{id}":{"delete":{"tags":["Workspace"],"summary":"Delete Members","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/workspace/branding":{"put":{"tags":["Workspace"],"summary":"Update Branding","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/workspace/subdomain":{"put":{"tags":["Workspace"],"summary":"Update Subdomain","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/workspace/subdomain/history":{"get":{"tags":["Workspace"],"summary":"Retrieve Subdomain history","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/auth/google":{"post":{"tags":["Auth"],"summary":"Create Google","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/auth/webauthn/login/options":{"post":{"tags":["Auth"],"summary":"Create Webauthn login options","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/auth/webauthn/login/verify":{"post":{"tags":["Auth"],"summary":"Create Webauthn login verify","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/auth/webauthn/register/options":{"post":{"tags":["Auth"],"summary":"Create Webauthn register options","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/auth/webauthn/register/verify":{"post":{"tags":["Auth"],"summary":"Create Webauthn register verify","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/auth/webauthn/credentials":{"get":{"tags":["Auth"],"summary":"Retrieve Webauthn credentials","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/auth/webauthn/credentials/{id}":{"delete":{"tags":["Auth"],"summary":"Delete Webauthn credentials","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/auth/set-password":{"put":{"tags":["Auth"],"summary":"Update Set Password","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/dashboard/production-units":{"get":{"tags":["Dashboard"],"summary":"Retrieve Production Units","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/dashboard/activity-feed":{"get":{"tags":["Dashboard"],"summary":"Retrieve Activity Feed","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/dashboard/recent-orders":{"get":{"tags":["Dashboard"],"summary":"Retrieve Recent Orders","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/dashboard/notifications":{"get":{"tags":["Dashboard"],"summary":"Retrieve Notifications","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/dashboard/crate-summary":{"get":{"tags":["Dashboard"],"summary":"Retrieve Crate Summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/dashboard/ai-insights":{"get":{"tags":["Dashboard"],"summary":"Retrieve Ai Insights","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/dashboard/ai-insights/account/{userId}":{"get":{"tags":["Dashboard"],"summary":"Retrieve Ai Insights account","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/orders/summary":{"get":{"tags":["Orders"],"summary":"Retrieve Summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/orders/calculate-schemes":{"post":{"tags":["Orders"],"summary":"Create Calculate Schemes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/users/summary":{"get":{"tags":["Users"],"summary":"Retrieve Summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/users/{id}/status":{"patch":{"tags":["Users"],"summary":"Update Status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/users/{id}/reset-password":{"post":{"tags":["Users"],"summary":"Create Reset Password","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/users/{id}":{"delete":{"tags":["Users"],"summary":"Delete Users","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"get":{"tags":["Users"],"summary":"Get user by ID","description":"Returns one user. Users outside the caller's workspace give 404.","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"description":"User details"}}},"put":{"tags":["Users"],"summary":"Update user","description":"Updates a user's profile and basic details. Admin only.","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"description":"User updated"}}}},"/products/classes":{"get":{"tags":["Products"],"summary":"Retrieve Classes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/products/{id}":{"get":{"tags":["Products"],"summary":"Retrieve Products","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"put":{"tags":["Products"],"summary":"Update Products","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Products"],"summary":"Delete Products","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/products/{id}/status":{"patch":{"tags":["Products"],"summary":"Update Status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/products/variants/{id}":{"put":{"tags":["Products"],"summary":"Update Variants","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/products/variants/{id}/status":{"patch":{"tags":["Products"],"summary":"Update Variants status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/schemes":{"get":{"tags":["Schemes"],"summary":"Retrieve Schemes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Schemes"],"summary":"Create Schemes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/schemes/{id}":{"get":{"tags":["Schemes"],"summary":"Retrieve Schemes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"put":{"tags":["Schemes"],"summary":"Update Schemes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Schemes"],"summary":"Delete Schemes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/schemes/{id}/status":{"patch":{"tags":["Schemes"],"summary":"Update Status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/crates/summary":{"get":{"tags":["Crates"],"summary":"Retrieve Summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/crates/ledger":{"get":{"tags":["Crates"],"summary":"Retrieve Ledger","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/crates/pending-approvals":{"get":{"tags":["Crates"],"summary":"Retrieve Pending Approvals","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/crates/dispatch":{"post":{"tags":["Crates"],"summary":"Create Dispatch","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/crates/receive":{"post":{"tags":["Crates"],"summary":"Create Receive","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/crates/monthly-summary":{"get":{"tags":["Crates"],"summary":"Retrieve Monthly Summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/vehicles":{"get":{"tags":["Logistics"],"summary":"Retrieve Vehicles","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Logistics"],"summary":"Create Vehicles","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/vehicles/{id}":{"get":{"tags":["Logistics"],"summary":"Retrieve Vehicles","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"put":{"tags":["Logistics"],"summary":"Update Vehicles","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/vehicles/{id}/status":{"patch":{"tags":["Logistics"],"summary":"Update Vehicles status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/drivers":{"get":{"tags":["Logistics"],"summary":"Retrieve Drivers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Logistics"],"summary":"Create Drivers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/drivers/{id}":{"get":{"tags":["Logistics"],"summary":"Retrieve Drivers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"put":{"tags":["Logistics"],"summary":"Update Drivers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/drivers/{id}/status":{"patch":{"tags":["Logistics"],"summary":"Update Drivers status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/routes":{"get":{"tags":["Logistics"],"summary":"Retrieve Routes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Logistics"],"summary":"Create Routes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/routes/{id}":{"put":{"tags":["Logistics"],"summary":"Update Routes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/zones":{"get":{"tags":["Logistics"],"summary":"Retrieve Zones","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Logistics"],"summary":"Create Zones","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/towns":{"get":{"tags":["Logistics"],"summary":"Retrieve Towns","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Logistics"],"summary":"Create Towns","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/vehicles/{vehicleId}/registration":{"get":{"tags":["Logistics"],"summary":"Retrieve Vehicles registration","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"vehicleId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Logistics"],"summary":"Create Vehicles registration","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"vehicleId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/vehicles/registration/{id}":{"put":{"tags":["Logistics"],"summary":"Update Vehicles registration","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Logistics"],"summary":"Delete Vehicles registration","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/vehicles/{vehicleId}/fitness":{"get":{"tags":["Logistics"],"summary":"Retrieve Vehicles fitness","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"vehicleId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Logistics"],"summary":"Create Vehicles fitness","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"vehicleId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/vehicles/fitness/{id}":{"put":{"tags":["Logistics"],"summary":"Update Vehicles fitness","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Logistics"],"summary":"Delete Vehicles fitness","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/vehicles/{vehicleId}/insurance":{"get":{"tags":["Logistics"],"summary":"Retrieve Vehicles insurance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"vehicleId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Logistics"],"summary":"Create Vehicles insurance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"vehicleId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/vehicles/insurance/{id}":{"put":{"tags":["Logistics"],"summary":"Update Vehicles insurance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Logistics"],"summary":"Delete Vehicles insurance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/vehicles/{vehicleId}/permit":{"get":{"tags":["Logistics"],"summary":"Retrieve Vehicles permit","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"vehicleId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Logistics"],"summary":"Create Vehicles permit","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"vehicleId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/vehicles/permit/{id}":{"put":{"tags":["Logistics"],"summary":"Update Vehicles permit","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Logistics"],"summary":"Delete Vehicles permit","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/vehicles/{vehicleId}/pollution":{"get":{"tags":["Logistics"],"summary":"Retrieve Vehicles pollution","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"vehicleId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Logistics"],"summary":"Create Vehicles pollution","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"vehicleId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/vehicles/pollution/{id}":{"put":{"tags":["Logistics"],"summary":"Update Vehicles pollution","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Logistics"],"summary":"Delete Vehicles pollution","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/logistics/optimize-route":{"post":{"tags":["Logistics"],"summary":"Create Optimize Route","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports":{"get":{"tags":["Reports"],"summary":"Retrieve Reports","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Reports"],"summary":"Create Reports","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/{id}":{"get":{"tags":["Reports"],"summary":"Retrieve Reports","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"put":{"tags":["Reports"],"summary":"Update Reports","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Reports"],"summary":"Delete Reports","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/sales":{"get":{"tags":["Reports"],"summary":"Retrieve Sales","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/attendance":{"get":{"tags":["Reports"],"summary":"Retrieve Attendance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/attendance/monthly":{"get":{"tags":["Reports"],"summary":"Retrieve Attendance monthly","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/activity":{"get":{"tags":["Reports"],"summary":"Retrieve Activity","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/indent":{"get":{"tags":["Reports"],"summary":"Retrieve Indent","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/daily-demand":{"get":{"tags":["Reports"],"summary":"Retrieve Daily Demand","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/tagging":{"get":{"tags":["Reports"],"summary":"Retrieve Tagging","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/employee":{"get":{"tags":["Reports"],"summary":"Retrieve Employee","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/ho":{"get":{"tags":["Reports"],"summary":"Retrieve Ho","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/packing-station":{"get":{"tags":["Reports"],"summary":"Retrieve Packing Station","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/sku-sales":{"get":{"tags":["Reports"],"summary":"Retrieve Sku Sales","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/product-secondary":{"get":{"tags":["Reports"],"summary":"Retrieve Product Secondary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/secondary-productive":{"get":{"tags":["Reports"],"summary":"Retrieve Secondary Productive","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/secondary-no-order":{"get":{"tags":["Reports"],"summary":"Retrieve Secondary No Order","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/performance":{"get":{"tags":["Reports"],"summary":"Retrieve Performance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/daily-attendance":{"get":{"tags":["Reports"],"summary":"Retrieve Daily Attendance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/attendance-performance":{"get":{"tags":["Reports"],"summary":"Retrieve Attendance Performance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/extended-shift":{"get":{"tags":["Reports"],"summary":"Retrieve Extended Shift","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/missed-punch":{"get":{"tags":["Reports"],"summary":"Retrieve Missed Punch","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/employee-performance":{"get":{"tags":["Reports"],"summary":"Retrieve Employee Performance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/leave-upload":{"get":{"tags":["Reports"],"summary":"Retrieve Leave Upload","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/dcr":{"get":{"tags":["Reports"],"summary":"Retrieve Dcr","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/delivery-challan":{"get":{"tags":["Reports"],"summary":"Retrieve Delivery Challan","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/mis":{"get":{"tags":["Reports"],"summary":"Retrieve Mis","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/expenses":{"get":{"tags":["Reports"],"summary":"Retrieve Expenses","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/leave":{"get":{"tags":["Reports"],"summary":"Retrieve Leave","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/leave-availability":{"get":{"tags":["Reports"],"summary":"Retrieve Leave Availability","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/amount-to-be-paid":{"get":{"tags":["Reports"],"summary":"Retrieve Amount To Be Paid","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/truck-sheet":{"get":{"tags":["Reports"],"summary":"Retrieve Truck Sheet","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/trucksheet-dispatch":{"get":{"tags":["Reports"],"summary":"Retrieve Trucksheet Dispatch","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/dist-date-wise":{"get":{"tags":["Reports"],"summary":"Retrieve Dist Date Wise","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/summary":{"get":{"tags":["Reports"],"summary":"Retrieve Summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/competitor-observations":{"get":{"tags":["Reports"],"summary":"Retrieve Competitor Observations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/reports/beat-productivity":{"get":{"tags":["Reports"],"summary":"Retrieve Beat Productivity","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/returns":{"post":{"tags":["Returns"],"summary":"Create Returns","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"get":{"tags":["Returns"],"summary":"Retrieve Returns","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/returns/{id}":{"get":{"tags":["Returns"],"summary":"Retrieve Returns","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/returns/{id}/approve":{"put":{"tags":["Returns"],"summary":"Update Approve","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/returns/{id}/reject":{"put":{"tags":["Returns"],"summary":"Update Reject","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/accounts/ledger":{"get":{"tags":["Accounts"],"summary":"Retrieve Ledger","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/accounts/ledger-summary":{"get":{"tags":["Accounts"],"summary":"Retrieve Ledger Summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/accounts/invoice/{orderId}":{"get":{"tags":["Accounts"],"summary":"Retrieve Invoice","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"orderId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/settings/roles":{"get":{"tags":["Settings"],"summary":"Retrieve Roles","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Settings"],"summary":"Create Roles","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/settings/modules":{"get":{"tags":["Settings"],"summary":"Retrieve Modules","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/settings/permissions":{"get":{"tags":["Settings"],"summary":"Retrieve Permissions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Settings"],"summary":"Create Permissions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/settings/role-permissions":{"get":{"tags":["Settings"],"summary":"Retrieve Role Permissions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Settings"],"summary":"Create Role Permissions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/settings/organizations":{"get":{"tags":["Settings"],"summary":"Retrieve Organizations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/settings/production-units":{"get":{"tags":["Settings"],"summary":"Retrieve Production Units","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/settings/configuration":{"get":{"tags":["Settings"],"summary":"Retrieve Configuration","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"put":{"tags":["Settings"],"summary":"Update Configuration","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/settings/roles/{id}":{"put":{"tags":["Settings"],"summary":"Update Roles","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/settings/roles/{id}/status":{"patch":{"tags":["Settings"],"summary":"Update Roles status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/settings/permissions/{id}":{"put":{"tags":["Settings"],"summary":"Update Permissions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/settings/permissions/{id}/status":{"patch":{"tags":["Settings"],"summary":"Update Permissions status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/settings/role-permissions/{id}":{"delete":{"tags":["Settings"],"summary":"Delete Role Permissions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/settings/role-permissions/bulk":{"put":{"tags":["Settings"],"summary":"Update Role Permissions bulk","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/secondary-sales":{"get":{"tags":["Exports"],"summary":"Retrieve Secondary Sales","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/products":{"get":{"tags":["Exports"],"summary":"Retrieve Products","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/crates":{"get":{"tags":["Exports"],"summary":"Retrieve Crates","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/holidays":{"get":{"tags":["Exports"],"summary":"Retrieve Holidays","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/grievances":{"get":{"tags":["Exports"],"summary":"Retrieve Grievances","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/ledger":{"get":{"tags":["Exports"],"summary":"Retrieve Ledger","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/activity":{"get":{"tags":["Exports"],"summary":"Retrieve Activity","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/ho-report":{"get":{"tags":["Exports"],"summary":"Retrieve Ho Report","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/packing-station":{"get":{"tags":["Exports"],"summary":"Retrieve Packing Station","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/amount-to-be-paid":{"get":{"tags":["Exports"],"summary":"Retrieve Amount To Be Paid","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/truck-sheet":{"get":{"tags":["Exports"],"summary":"Retrieve Truck Sheet","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/trucksheet-dispatch":{"get":{"tags":["Exports"],"summary":"Retrieve Trucksheet Dispatch","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/dist-date-wise":{"get":{"tags":["Exports"],"summary":"Retrieve Dist Date Wise","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/expenses":{"get":{"tags":["Exports"],"summary":"Retrieve Reports expenses","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/expenses":{"get":{"tags":["Exports"],"summary":"Retrieve Expenses","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/leave":{"get":{"tags":["Exports"],"summary":"Retrieve Reports leave","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/leave":{"get":{"tags":["Exports"],"summary":"Retrieve Leave","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/leave-availability":{"get":{"tags":["Exports"],"summary":"Retrieve Reports leave Availability","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/leave-availability":{"get":{"tags":["Exports"],"summary":"Retrieve Leave Availability","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/sku-sales":{"get":{"tags":["Exports"],"summary":"Retrieve Reports sku Sales","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/sku-sales":{"get":{"tags":["Exports"],"summary":"Retrieve Sku Sales","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/product-secondary":{"get":{"tags":["Exports"],"summary":"Retrieve Reports product Secondary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/product-secondary":{"get":{"tags":["Exports"],"summary":"Retrieve Product Secondary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/secondary-productive":{"get":{"tags":["Exports"],"summary":"Retrieve Reports secondary Productive","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/secondary-productive":{"get":{"tags":["Exports"],"summary":"Retrieve Secondary Productive","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/secondary-no-order":{"get":{"tags":["Exports"],"summary":"Retrieve Reports secondary No Order","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/secondary-no-order":{"get":{"tags":["Exports"],"summary":"Retrieve Secondary No Order","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/performance":{"get":{"tags":["Exports"],"summary":"Retrieve Reports performance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/performance":{"get":{"tags":["Exports"],"summary":"Retrieve Performance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/daily-attendance":{"get":{"tags":["Exports"],"summary":"Retrieve Reports daily Attendance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/daily-attendance":{"get":{"tags":["Exports"],"summary":"Retrieve Daily Attendance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/attendance-performance":{"get":{"tags":["Exports"],"summary":"Retrieve Reports attendance Performance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/attendance-performance":{"get":{"tags":["Exports"],"summary":"Retrieve Attendance Performance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/extended-shift":{"get":{"tags":["Exports"],"summary":"Retrieve Reports extended Shift","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/extended-shift":{"get":{"tags":["Exports"],"summary":"Retrieve Extended Shift","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/missed-punch":{"get":{"tags":["Exports"],"summary":"Retrieve Reports missed Punch","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/missed-punch":{"get":{"tags":["Exports"],"summary":"Retrieve Missed Punch","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/employee-performance":{"get":{"tags":["Exports"],"summary":"Retrieve Reports employee Performance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/employee-performance":{"get":{"tags":["Exports"],"summary":"Retrieve Employee Performance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/leave-upload":{"get":{"tags":["Exports"],"summary":"Retrieve Reports leave Upload","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/leave-upload":{"get":{"tags":["Exports"],"summary":"Retrieve Leave Upload","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/dcr":{"get":{"tags":["Exports"],"summary":"Retrieve Reports dcr","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/dcr":{"get":{"tags":["Exports"],"summary":"Retrieve Dcr","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/delivery-challan":{"get":{"tags":["Exports"],"summary":"Retrieve Reports delivery Challan","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/delivery-challan":{"get":{"tags":["Exports"],"summary":"Retrieve Delivery Challan","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/mis":{"get":{"tags":["Exports"],"summary":"Retrieve Reports mis","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/mis":{"get":{"tags":["Exports"],"summary":"Retrieve Mis","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/summary":{"get":{"tags":["Exports"],"summary":"Retrieve Summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/scan-logs":{"get":{"tags":["Exports"],"summary":"Retrieve Scan Logs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/reports/beat-productivity":{"get":{"tags":["Exports"],"summary":"Retrieve Reports beat Productivity","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/exports/beat-productivity":{"get":{"tags":["Exports"],"summary":"Retrieve Beat Productivity","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/imports/product-variants":{"post":{"tags":["Imports"],"summary":"Create Product Variants","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/imports/schemes":{"post":{"tags":["Imports"],"summary":"Create Schemes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/imports/rate-list":{"post":{"tags":["Imports"],"summary":"Create Rate List","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/imports/outstanding":{"post":{"tags":["Imports"],"summary":"Create Outstanding","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/imports/revised-amount":{"post":{"tags":["Imports"],"summary":"Create Revised Amount","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/imports/holidays":{"post":{"tags":["Imports"],"summary":"Create Holidays","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/imports/template/{type}":{"get":{"tags":["Imports"],"summary":"Retrieve Template","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"type","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/states":{"get":{"tags":["Helpers"],"summary":"Retrieve States","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/zones":{"get":{"tags":["Helpers"],"summary":"Retrieve Zones","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/towns":{"get":{"tags":["Helpers"],"summary":"Retrieve Towns","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/routes":{"get":{"tags":["Helpers"],"summary":"Retrieve Routes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/production-units":{"get":{"tags":["Helpers"],"summary":"Retrieve Production Units","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/roles":{"get":{"tags":["Helpers"],"summary":"Retrieve Roles","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/product-classes":{"get":{"tags":["Helpers"],"summary":"Retrieve Product Classes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/products":{"get":{"tags":["Helpers"],"summary":"Retrieve Products","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/variants":{"get":{"tags":["Helpers"],"summary":"Retrieve Variants","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/users":{"get":{"tags":["Helpers"],"summary":"Retrieve Users","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/departments":{"get":{"tags":["Helpers"],"summary":"Retrieve Departments","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/organizations":{"get":{"tags":["Helpers"],"summary":"Retrieve Organizations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/designations":{"get":{"tags":["Helpers"],"summary":"Retrieve Designations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/areas":{"get":{"tags":["Helpers"],"summary":"Retrieve Areas","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/territories":{"get":{"tags":["Helpers"],"summary":"Retrieve Territories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/helpers/districts":{"get":{"tags":["Helpers"],"summary":"Retrieve Districts","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/uploads/document":{"post":{"tags":["Uploads"],"summary":"Create Document","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/uploads/branding":{"post":{"tags":["Uploads"],"summary":"Create Branding","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/uploads/general":{"post":{"tags":["Uploads"],"summary":"Create General","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/uploads/general/multiple":{"post":{"tags":["Uploads"],"summary":"Create General multiple","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/uploads":{"delete":{"tags":["Uploads"],"summary":"Delete Uploads","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/approvals":{"get":{"tags":["Approvals"],"summary":"Retrieve Approvals","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/approvals/{type}/{id}":{"patch":{"tags":["Approvals"],"summary":"Update Approvals","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"type","in":"path","required":true,"schema":{"type":"string"}},{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/visits/save":{"post":{"tags":["Visits"],"summary":"Create Save","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/visits":{"get":{"tags":["Visits"],"summary":"Retrieve Visits","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/payments/collect":{"post":{"tags":["Payments"],"summary":"Create Collect","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/payments/history":{"get":{"tags":["Payments"],"summary":"Retrieve History","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/leaves/types":{"get":{"tags":["Leaves"],"summary":"Retrieve Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Leaves"],"summary":"Create Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/leaves":{"get":{"tags":["Leaves"],"summary":"Retrieve Leaves","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/leaves/apply":{"post":{"tags":["Leaves"],"summary":"Create Apply","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/leaves/{id}/status":{"patch":{"tags":["Leaves"],"summary":"Update Status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/foc":{"get":{"tags":["Foc"],"summary":"Retrieve Foc","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Foc"],"summary":"Create Foc","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/foc/{id}":{"get":{"tags":["Foc"],"summary":"Retrieve Foc","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/foc/{id}/status":{"patch":{"tags":["Foc"],"summary":"Update Status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/tracking/save":{"post":{"tags":["Tracking"],"summary":"Create Save","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/tracking/save-bulk":{"post":{"tags":["Tracking"],"summary":"Create Save Bulk","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/tracking/live":{"get":{"tags":["Tracking"],"summary":"Retrieve Live","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/tracking/live/{userId}":{"get":{"tags":["Tracking"],"summary":"Retrieve Live","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/tracking/location-log":{"get":{"tags":["Tracking"],"summary":"Retrieve Location Log","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/tracking/travel-summary":{"get":{"tags":["Tracking"],"summary":"Retrieve Travel Summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/tracking/check-attendance":{"get":{"tags":["Tracking"],"summary":"Retrieve Check Attendance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/tracking/mark-attendance":{"post":{"tags":["Tracking"],"summary":"Create Mark Attendance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-plans":{"get":{"tags":["Sales Plans"],"summary":"Retrieve Sales Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Sales Plans"],"summary":"Create Sales Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-plans/{id}":{"put":{"tags":["Sales Plans"],"summary":"Update Sales Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-plans/{id}/status":{"patch":{"tags":["Sales Plans"],"summary":"Update Status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/organizations":{"get":{"tags":["Masters"],"summary":"Retrieve Organizations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Organizations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/organizations/{id}":{"put":{"tags":["Masters"],"summary":"Update Organizations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/organizations/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Organizations status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/departments":{"get":{"tags":["Masters"],"summary":"Retrieve Departments","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Departments","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/departments/{id}":{"put":{"tags":["Masters"],"summary":"Update Departments","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/departments/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Departments status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/zones":{"get":{"tags":["Masters"],"summary":"Retrieve Zones","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Zones","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/zones/{id}":{"put":{"tags":["Masters"],"summary":"Update Zones","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/towns":{"get":{"tags":["Masters"],"summary":"Retrieve Towns","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Towns","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/towns/{id}":{"put":{"tags":["Masters"],"summary":"Update Towns","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/routes":{"get":{"tags":["Masters"],"summary":"Retrieve Routes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Routes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/routes/{id}":{"put":{"tags":["Masters"],"summary":"Update Routes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/routes/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Routes status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/production-units":{"get":{"tags":["Masters"],"summary":"Retrieve Production Units","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Production Units","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/production-units/{id}":{"put":{"tags":["Masters"],"summary":"Update Production Units","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/production-units/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Production Units status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/product-classes":{"get":{"tags":["Masters"],"summary":"Retrieve Product Classes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Product Classes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/product-classes/{id}":{"put":{"tags":["Masters"],"summary":"Update Product Classes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/product-classes/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Product Classes status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/packaging-types":{"get":{"tags":["Masters"],"summary":"Retrieve Packaging Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Packaging Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/packaging-types/{id}":{"put":{"tags":["Masters"],"summary":"Update Packaging Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/packaging-types/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Packaging Types status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/containers":{"get":{"tags":["Masters"],"summary":"Retrieve Containers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Containers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/containers/{id}":{"put":{"tags":["Masters"],"summary":"Update Containers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/containers/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Containers status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/brands":{"get":{"tags":["Masters"],"summary":"Retrieve Brands","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Brands","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/brands/{id}":{"put":{"tags":["Masters"],"summary":"Update Brands","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/brands/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Brands status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/designations":{"get":{"tags":["Masters"],"summary":"Retrieve Designations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Designations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/designations/{id}":{"put":{"tags":["Masters"],"summary":"Update Designations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/designations/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Designations status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/divisions":{"get":{"tags":["Masters"],"summary":"Retrieve Divisions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Divisions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/divisions/{id}":{"put":{"tags":["Masters"],"summary":"Update Divisions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/divisions/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Divisions status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/headquarters":{"get":{"tags":["Masters"],"summary":"Retrieve Headquarters","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Headquarters","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/headquarters/{id}":{"put":{"tags":["Masters"],"summary":"Update Headquarters","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/headquarters/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Headquarters status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/areas":{"get":{"tags":["Masters"],"summary":"Retrieve Areas","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Areas","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/areas/{id}":{"put":{"tags":["Masters"],"summary":"Update Areas","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/areas/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Areas status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/territories":{"get":{"tags":["Masters"],"summary":"Retrieve Territories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Territories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/territories/{id}":{"put":{"tags":["Masters"],"summary":"Update Territories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/territories/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Territories status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/districts":{"get":{"tags":["Masters"],"summary":"Retrieve Districts","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Districts","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/districts/{id}":{"put":{"tags":["Masters"],"summary":"Update Districts","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/districts/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Districts status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/product-groups":{"get":{"tags":["Masters"],"summary":"Retrieve Product Groups","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Product Groups","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/product-groups/{id}":{"put":{"tags":["Masters"],"summary":"Update Product Groups","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/product-groups/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Product Groups status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/product-sequences":{"get":{"tags":["Masters"],"summary":"Retrieve Product Sequences","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Product Sequences","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/product-sequences/{id}":{"put":{"tags":["Masters"],"summary":"Update Product Sequences","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/product-taxes":{"get":{"tags":["Masters"],"summary":"Retrieve Product Taxes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Product Taxes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/product-taxes/{id}":{"put":{"tags":["Masters"],"summary":"Update Product Taxes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/product-taxes/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Product Taxes status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/product-targets":{"get":{"tags":["Masters"],"summary":"Retrieve Product Targets","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Product Targets","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/product-targets/{id}":{"put":{"tags":["Masters"],"summary":"Update Product Targets","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/rate-cards":{"get":{"tags":["Masters"],"summary":"Retrieve Rate Cards","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Rate Cards","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/rate-cards/{id}":{"put":{"tags":["Masters"],"summary":"Update Rate Cards","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/rate-cards/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Rate Cards status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/rate-card-items":{"get":{"tags":["Masters"],"summary":"Retrieve Rate Card Items","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Rate Card Items","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/rate-card-items/{id}":{"put":{"tags":["Masters"],"summary":"Update Rate Card Items","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/rate-card-mappings":{"get":{"tags":["Masters"],"summary":"Retrieve Rate Card Mappings","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Rate Card Mappings","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/rate-card-mappings/{id}":{"put":{"tags":["Masters"],"summary":"Update Rate Card Mappings","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/work-types":{"get":{"tags":["Masters"],"summary":"Retrieve Work Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Work Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/work-types/{id}":{"put":{"tags":["Masters"],"summary":"Update Work Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/work-types/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Work Types status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/outlets":{"get":{"tags":["Masters"],"summary":"Retrieve Outlets","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Outlets","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/outlets/{id}":{"put":{"tags":["Masters"],"summary":"Update Outlets","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/outlets/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Outlets status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/route-product-mappings":{"get":{"tags":["Masters"],"summary":"Retrieve Route Product Mappings","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Route Product Mappings","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/route-product-mappings/{id}":{"put":{"tags":["Masters"],"summary":"Update Route Product Mappings","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/route-product-mappings/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Route Product Mappings status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/business-types":{"get":{"tags":["Masters"],"summary":"Retrieve Business Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Business Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/business-types/{id}":{"put":{"tags":["Masters"],"summary":"Update Business Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/business-types/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Business Types status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/outlet-types":{"get":{"tags":["Masters"],"summary":"Retrieve Outlet Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Outlet Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/outlet-types/{id}":{"put":{"tags":["Masters"],"summary":"Update Outlet Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/outlet-types/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Outlet Types status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/outlet-sub-types":{"get":{"tags":["Masters"],"summary":"Retrieve Outlet Sub Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Outlet Sub Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/outlet-sub-types/{id}":{"put":{"tags":["Masters"],"summary":"Update Outlet Sub Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/outlet-sub-types/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Outlet Sub Types status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/retailer-categories":{"get":{"tags":["Masters"],"summary":"Retrieve Retailer Categories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Retailer Categories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/retailer-categories/{id}":{"put":{"tags":["Masters"],"summary":"Update Retailer Categories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/retailer-categories/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Retailer Categories status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/fare-fixations":{"get":{"tags":["Masters"],"summary":"Retrieve Fare Fixations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Fare Fixations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/fare-fixations/{id}":{"put":{"tags":["Masters"],"summary":"Update Fare Fixations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/allowance-types":{"get":{"tags":["Masters"],"summary":"Retrieve Allowance Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Allowance Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/allowance-types/{id}":{"put":{"tags":["Masters"],"summary":"Update Allowance Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/allowance-fixations":{"get":{"tags":["Masters"],"summary":"Retrieve Allowance Fixations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Allowance Fixations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/allowance-fixations/{id}":{"put":{"tags":["Masters"],"summary":"Update Allowance Fixations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/mode-of-travel":{"get":{"tags":["Masters"],"summary":"Retrieve Mode Of Travel","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Mode Of Travel","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/mode-of-travel/{id}":{"put":{"tags":["Masters"],"summary":"Update Mode Of Travel","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/tax-list":{"get":{"tags":["Masters"],"summary":"Retrieve Tax List","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Tax List","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/tax-list/{id}":{"put":{"tags":["Masters"],"summary":"Update Tax List","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/shifts":{"get":{"tags":["Masters"],"summary":"Retrieve Shifts","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Shifts","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/shifts/{id}":{"put":{"tags":["Masters"],"summary":"Update Shifts","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/shifts/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Shifts status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/cities":{"get":{"tags":["Masters"],"summary":"Retrieve Cities","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Cities","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/cities/{id}":{"put":{"tags":["Masters"],"summary":"Update Cities","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/cities/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Cities status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/time-slots":{"get":{"tags":["Masters"],"summary":"Retrieve Time Slots","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Time Slots","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/time-slots/{id}":{"put":{"tags":["Masters"],"summary":"Update Time Slots","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/time-slots/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Time Slots status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/reasons":{"get":{"tags":["Masters"],"summary":"Retrieve Reasons","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Reasons","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/reasons/{id}":{"put":{"tags":["Masters"],"summary":"Update Reasons","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/reasons/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Reasons status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/fuel-types":{"get":{"tags":["Masters"],"summary":"Retrieve Fuel Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Fuel Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/fuel-types/{id}":{"put":{"tags":["Masters"],"summary":"Update Fuel Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/fuel-types/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Fuel Types status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/financial-years":{"get":{"tags":["Masters"],"summary":"Retrieve Financial Years","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Financial Years","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/financial-years/{id}":{"put":{"tags":["Masters"],"summary":"Update Financial Years","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/financial-years/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Financial Years status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/main-routes":{"get":{"tags":["Masters"],"summary":"Retrieve Main Routes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Main Routes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/main-routes/{id}":{"put":{"tags":["Masters"],"summary":"Update Main Routes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/main-routes/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Main Routes status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/color-codes":{"get":{"tags":["Masters"],"summary":"Retrieve Color Codes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Color Codes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/color-codes/{id}":{"put":{"tags":["Masters"],"summary":"Update Color Codes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/color-codes/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Color Codes status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/contact-types":{"get":{"tags":["Masters"],"summary":"Retrieve Contact Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Contact Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/contact-types/{id}":{"put":{"tags":["Masters"],"summary":"Update Contact Types","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/contact-types/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Contact Types status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/vehicle-classifications":{"get":{"tags":["Masters"],"summary":"Retrieve Vehicle Classifications","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Vehicle Classifications","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/vehicle-classifications/{id}":{"put":{"tags":["Masters"],"summary":"Update Vehicle Classifications","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/vehicle-classifications/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Vehicle Classifications status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/notice-boards":{"get":{"tags":["Masters"],"summary":"Retrieve Notice Boards","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Notice Boards","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/notice-boards/{id}":{"put":{"tags":["Masters"],"summary":"Update Notice Boards","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/notice-boards/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Notice Boards status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/call-feedbacks":{"get":{"tags":["Masters"],"summary":"Retrieve Call Feedbacks","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Call Feedbacks","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/call-feedbacks/{id}":{"put":{"tags":["Masters"],"summary":"Update Call Feedbacks","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/call-feedbacks/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Call Feedbacks status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/call-remarks-templates":{"get":{"tags":["Masters"],"summary":"Retrieve Call Remarks Templates","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Call Remarks Templates","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/call-remarks-templates/{id}":{"put":{"tags":["Masters"],"summary":"Update Call Remarks Templates","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/call-remarks-templates/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Call Remarks Templates status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/channel-transfers":{"get":{"tags":["Masters"],"summary":"Retrieve Channel Transfers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Channel Transfers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/channel-transfers/{id}":{"put":{"tags":["Masters"],"summary":"Update Channel Transfers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/channel-transfers/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Channel Transfers status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/class-transfers":{"get":{"tags":["Masters"],"summary":"Retrieve Class Transfers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Class Transfers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/class-transfers/{id}":{"put":{"tags":["Masters"],"summary":"Update Class Transfers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/class-transfers/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Class Transfers status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/id-block-approvals":{"get":{"tags":["Masters"],"summary":"Retrieve Id Block Approvals","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Id Block Approvals","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/id-block-approvals/{id}":{"put":{"tags":["Masters"],"summary":"Update Id Block Approvals","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/id-block-approvals/{id}/status":{"patch":{"tags":["Masters"],"summary":"Update Id Block Approvals status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/crate-assets":{"get":{"tags":["Masters"],"summary":"Retrieve Crate Assets","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Crate Assets","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/crate-assets/bulk":{"post":{"tags":["Masters"],"summary":"Create Crate Assets bulk","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/crate-assets/{id}":{"put":{"tags":["Masters"],"summary":"Update Crate Assets","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/customer-notes":{"get":{"tags":["Masters"],"summary":"Retrieve Customer Notes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Masters"],"summary":"Create Customer Notes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/masters/customer-notes/{id}":{"put":{"tags":["Masters"],"summary":"Update Customer Notes","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/holidays":{"get":{"tags":["Holidays"],"summary":"Retrieve Holidays","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Holidays"],"summary":"Create Holidays","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/holidays/{id}":{"put":{"tags":["Holidays"],"summary":"Update Holidays","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Holidays"],"summary":"Delete Holidays","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/holidays/{id}/status":{"patch":{"tags":["Holidays"],"summary":"Update Status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/grievances":{"get":{"tags":["Grievances"],"summary":"Retrieve Grievances","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/grievances/{id}":{"get":{"tags":["Grievances"],"summary":"Retrieve Grievances","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/grievances/{id}/reply":{"put":{"tags":["Grievances"],"summary":"Update Reply","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/notifications/send":{"post":{"tags":["Notifications"],"summary":"Create Send","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/notifications/report":{"get":{"tags":["Notifications"],"summary":"Retrieve Report","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/notifications/device-tokens":{"get":{"tags":["Notifications"],"summary":"Retrieve Device Tokens","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/expenses":{"get":{"tags":["Expenses"],"summary":"Retrieve Expenses","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Expenses"],"summary":"Create Expenses","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/expenses/categories":{"get":{"tags":["Expenses"],"summary":"Retrieve Categories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Expenses"],"summary":"Create Categories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/expenses/{id}":{"get":{"tags":["Expenses"],"summary":"Retrieve Expenses","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"put":{"tags":["Expenses"],"summary":"Update Expenses","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Expenses"],"summary":"Delete Expenses","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/expenses/{id}/approve":{"patch":{"tags":["Expenses"],"summary":"Update Approve","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/expenses/categories/{id}":{"put":{"tags":["Expenses"],"summary":"Update Categories","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/operations/retailer-transfers":{"get":{"tags":["Operations"],"summary":"Retrieve Retailer Transfers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Operations"],"summary":"Create Retailer Transfers","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/operations/retailer-transfers/{id}/complete":{"patch":{"tags":["Operations"],"summary":"Update Retailer Transfers complete","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/operations/time-records":{"get":{"tags":["Operations"],"summary":"Retrieve Time Records","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Operations"],"summary":"Create Time Records","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/operations/time-records/{id}":{"put":{"tags":["Operations"],"summary":"Update Time Records","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/incentives/slabs":{"get":{"tags":["Incentives"],"summary":"Retrieve Slabs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Incentives"],"summary":"Create Slabs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/incentives/slabs/{id}":{"put":{"tags":["Incentives"],"summary":"Update Slabs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/incentives/slabs/{id}/status":{"patch":{"tags":["Incentives"],"summary":"Update Slabs status","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/incentives":{"get":{"tags":["Incentives"],"summary":"Retrieve Incentives","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/incentives/{id}":{"get":{"tags":["Incentives"],"summary":"Retrieve Incentives","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/incentives/generate":{"post":{"tags":["Incentives"],"summary":"Create Generate","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/incentives/{id}/approve":{"patch":{"tags":["Incentives"],"summary":"Update Approve","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/org/request-update":{"post":{"tags":["Org"],"summary":"Create Request Update","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/org/update-requests":{"get":{"tags":["Org"],"summary":"Retrieve Update Requests","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/org/domain-email":{"post":{"tags":["Org"],"summary":"Create Domain Email","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/org/verify-domain-email":{"post":{"tags":["Org"],"summary":"Create Verify Domain Email","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/org/domain-emails":{"get":{"tags":["Org"],"summary":"Retrieve Domain Emails","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/support/request":{"post":{"tags":["Support"],"summary":"Create Request","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/support/sessions":{"get":{"tags":["Support"],"summary":"Retrieve Sessions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/support/sessions/{id}":{"delete":{"tags":["Support"],"summary":"Delete Sessions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/media/{mediaId}":{"get":{"tags":["Media"],"summary":"Retrieve Media","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"mediaId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Media"],"summary":"Delete Media","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"mediaId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/media/{mediaId}/download":{"get":{"tags":["Media"],"summary":"Retrieve Download","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"mediaId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/mobile/turnstile":{"get":{"tags":["Mobile"],"summary":"Retrieve Turnstile","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/mobile/ai/assistant":{"post":{"tags":["Mobile"],"summary":"Create Ai assistant","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/mobile/bug-report/attachment":{"post":{"tags":["Mobile"],"summary":"Create Bug Report attachment","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/mobile/bug-report":{"post":{"tags":["Mobile"],"summary":"Create Bug Report","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/dashboard":{"get":{"tags":["Sales App"],"summary":"Retrieve Dashboard","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/manager-summary":{"get":{"tags":["Sales App"],"summary":"Retrieve Manager Summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/distributor-timeline":{"get":{"tags":["Sales App"],"summary":"Retrieve Distributor Timeline","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/notifications":{"get":{"tags":["Sales App"],"summary":"Retrieve Notifications","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/notifications/{id}/read":{"patch":{"tags":["Sales App"],"summary":"Update Notifications read","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/device-token":{"post":{"tags":["Sales App"],"summary":"Create Device Token","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"delete":{"tags":["Sales App"],"summary":"Delete Device Token","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/appointments":{"get":{"tags":["Sales App"],"summary":"Retrieve Appointments","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Sales App"],"summary":"Create Appointments","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/appointments/{id}":{"patch":{"tags":["Sales App"],"summary":"Update Appointments","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/travel-plans":{"get":{"tags":["Sales App"],"summary":"Retrieve Travel Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Sales App"],"summary":"Create Travel Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/travel-plans/{id}":{"patch":{"tags":["Sales App"],"summary":"Update Travel Plans","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/expense-claims":{"get":{"tags":["Sales App"],"summary":"Retrieve Expense Claims","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Sales App"],"summary":"Create Expense Claims","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/follow-ups":{"get":{"tags":["Sales App"],"summary":"Retrieve Follow Ups","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Sales App"],"summary":"Create Follow Ups","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/follow-ups/{id}":{"patch":{"tags":["Sales App"],"summary":"Update Follow Ups","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/market-insights":{"get":{"tags":["Sales App"],"summary":"Retrieve Market Insights","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Sales App"],"summary":"Create Market Insights","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/products":{"get":{"tags":["Sales App"],"summary":"Retrieve Products","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/orders":{"post":{"tags":["Sales App"],"summary":"Create Orders","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/payments":{"get":{"tags":["Sales App"],"summary":"Retrieve Payments","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Sales App"],"summary":"Create Payments","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/payments/{id}/verify":{"patch":{"tags":["Sales App"],"summary":"Update Payments verify","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/scan/product-lookup":{"post":{"tags":["Sales App"],"summary":"Create Scan product Lookup","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/scan/batch-check":{"post":{"tags":["Sales App"],"summary":"Create Scan batch Check","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/scan/stock-audit":{"post":{"tags":["Sales App"],"summary":"Create Scan stock Audit","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/bug-report/attachment":{"post":{"tags":["Sales App"],"summary":"Create Bug Report attachment","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/bug-report":{"post":{"tags":["Sales App"],"summary":"Create Bug Report","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/ai/assistant":{"post":{"tags":["Sales App"],"summary":"Create Ai assistant","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/ai-insights":{"get":{"tags":["Sales App"],"summary":"Retrieve Ai Insights","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/ai-insights/account/{userId}":{"get":{"tags":["Sales App"],"summary":"Retrieve Ai Insights account","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/visits/{id}/photos":{"get":{"tags":["Sales App"],"summary":"Retrieve Visits photos","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Sales App"],"summary":"Create Visits photos","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/competitor-observations":{"get":{"tags":["Sales App"],"summary":"Retrieve Competitor Observations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Sales App"],"summary":"Create Competitor Observations","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/distributor-stock":{"post":{"tags":["Sales App"],"summary":"Create Distributor Stock","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/sales-app/distributor-stock/suggested-order":{"get":{"tags":["Sales App"],"summary":"Retrieve Distributor Stock suggested Order","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/scan/lookup":{"post":{"tags":["Scan"],"summary":"Create Lookup","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/scan/log":{"post":{"tags":["Scan"],"summary":"Create Log","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/scan/logs":{"get":{"tags":["Scan"],"summary":"Retrieve Logs","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/scan/logs/summary":{"get":{"tags":["Scan"],"summary":"Retrieve Logs summary","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/qr/order/{id}":{"get":{"tags":["Qr"],"summary":"Retrieve Order","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/qr/batch/{id}":{"get":{"tags":["Qr"],"summary":"Retrieve Batch","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/qr/crate/{id}":{"get":{"tags":["Qr"],"summary":"Retrieve Crate","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/qr/product-barcode/{variantId}":{"get":{"tags":["Qr"],"summary":"Retrieve Product Barcode","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"variantId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/qr/bulk-generate":{"post":{"tags":["Qr"],"summary":"Create Bulk Generate","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/wallet/balance":{"get":{"tags":["Wallet"],"summary":"Retrieve Balance","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/wallet/recharge":{"post":{"tags":["Wallet"],"summary":"Create Recharge","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/wallet/transactions":{"get":{"tags":["Wallet"],"summary":"Retrieve Transactions","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/wallet/settings":{"patch":{"tags":["Wallet"],"summary":"Update Settings","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/wallet/auto-debit":{"post":{"tags":["Wallet"],"summary":"Create Auto Debit","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/gamification/leaderboard":{"get":{"tags":["Gamification"],"summary":"Retrieve Leaderboard","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/gamification/my-score":{"get":{"tags":["Gamification"],"summary":"Retrieve My Score","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/gamification/achievements":{"get":{"tags":["Gamification"],"summary":"Retrieve Achievements","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true},"post":{"tags":["Gamification"],"summary":"Create Achievements","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/gamification/my-achievements":{"get":{"tags":["Gamification"],"summary":"Retrieve My Achievements","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/gamification/calculate":{"post":{"tags":["Gamification"],"summary":"Create Calculate","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/gamification/achievements/{id}":{"put":{"tags":["Gamification"],"summary":"Update Achievements","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/credit/dashboard":{"get":{"tags":["Credit"],"summary":"Retrieve Dashboard","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/credit/scores":{"get":{"tags":["Credit"],"summary":"Retrieve Scores","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/credit/scores/{userId}":{"get":{"tags":["Credit"],"summary":"Retrieve Scores","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/credit/calculate":{"post":{"tags":["Credit"],"summary":"Create Calculate","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/credit/reminders":{"get":{"tags":["Credit"],"summary":"Retrieve Reminders","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/credit/send-reminders":{"post":{"tags":["Credit"],"summary":"Create Send Reminders","description":"Derived from the route table. This endpoint exists and is reachable; its request and response shapes are not yet described by hand.","security":[{"BearerAuth":[]},{"ApiKeyAuth":[]}],"parameters":[],"responses":{"200":{"description":"Success"}},"x-generated":true}},"/auth/login":{"post":{"tags":["Auth"],"summary":"Login with email and password","description":"Exchanges email and password for a JWT valid for 15 days. In production the request must also carry a Cloudflare Turnstile token, which only a browser can obtain, so servers should use an API key instead. Only one token is valid per user at a time: a successful login revokes the token issued by the previous one. Five consecutive failures lock the account for 30 minutes.","security":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["email","password"],"properties":{"email":{"type":"string"},"password":{"type":"string"}}}}}},"responses":{"200":{"description":"Login successful — returns JWT token, user info, modules, workspace"},"401":{"description":"Invalid credentials"}}}},"/auth/otp/request":{"post":{"tags":["Auth"],"summary":"Request OTP via email","description":"Emails a one-time code valid for 5 minutes. As with magic links, the response does not reveal whether the address belongs to an account.","security":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["email"],"properties":{"email":{"type":"string"}}}}}},"responses":{"200":{"description":"OTP sent if account exists"}}}},"/auth/otp/verify":{"post":{"tags":["Auth"],"summary":"Verify OTP and get JWT","description":"Exchanges a valid, unexpired code for a JWT. Rate limited separately from login, and revokes the user's previous session on success.","security":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["email","otp"],"properties":{"email":{"type":"string"},"otp":{"type":"string"}}}}}},"responses":{"200":{"description":"OTP verified — returns JWT token"},"401":{"description":"Invalid OTP"}}}},"/auth/magic-link/request":{"post":{"tags":["Auth"],"summary":"Request magic link via email","description":"Emails a single-use sign-in link valid for 10 minutes, invalidating any link previously issued to that address. The response is identical whether or not an account exists, so it cannot be used to discover registered emails. Only the SHA-256 hash of the token is stored.","security":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["email"],"properties":{"email":{"type":"string"}}}}}},"responses":{"200":{"description":"Magic link sent"}}}},"/auth/magic-link/verify/{token}":{"get":{"tags":["Auth"],"summary":"Verify magic link token","description":"Consumes a magic link and returns a JWT. The link is single-use and expires 10 minutes after it was requested; a spent, unknown, or expired token gives 401. Like any sign-in, this revokes the user's previous session.","security":[],"parameters":[{"name":"token","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Token verified — returns JWT"}}}},"/auth/me":{"get":{"tags":["Auth"],"summary":"Get current user profile","description":"Returns the authenticated user with their role, workspace and permitted modules. Useful as a cheap check that a token is still valid, since a revoked or expired one gives 401 here.","responses":{"200":{"description":"User profile"}}}},"/auth/logout":{"post":{"tags":["Auth"],"summary":"Logout","description":"Revokes the caller's token immediately. The same bearer token is rejected with 401 on the next request; it is not merely forgotten client-side.","responses":{"200":{"description":"Logged out"}}}},"/auth/change-password":{"put":{"tags":["Auth"],"summary":"Change password","description":"Requires the current password and a new one meeting the strength policy (at least 8 characters, upper and lower case, and a symbol). On success the session is rotated, so the token used to make the call is revoked along with any other session for that user and a fresh one is returned.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["current_password","new_password"],"properties":{"current_password":{"type":"string"},"new_password":{"type":"string"}}}}}},"responses":{"200":{"description":"Password changed"}}}},"/signup/register":{"post":{"tags":["Signup"],"summary":"Register new workspace","security":[],"description":"Creates a new organization with workspace, admin user, default roles, and production unit. Returns JWT for immediate login.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["company_name","slug","admin_email","admin_phone","admin_password"],"properties":{"company_name":{"type":"string","example":"Rajasthan Fresh Foods"},"slug":{"type":"string","example":"rajasthan-fresh"},"admin_first_name":{"type":"string"},"admin_last_name":{"type":"string"},"admin_email":{"type":"string","format":"email"},"admin_phone":{"type":"string"},"admin_password":{"type":"string","minLength":6},"state":{"type":"string"},"pincode":{"type":"string"}}}}}},"responses":{"201":{"description":"Workspace created — returns JWT, user, workspace info"},"400":{"description":"Validation error or slug taken"}}}},"/signup/check-slug/{slug}":{"get":{"tags":["Signup"],"summary":"Check workspace slug availability","description":"Reports whether a workspace slug is free. Public, so a signup form can validate as the user types.","security":[],"parameters":[{"name":"slug","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Availability result"}}}},"/orders":{"get":{"tags":["Orders"],"summary":"List orders","description":"Returns orders for the caller's workspace, newest first. Results are capped at 100 per page globally, so paginate rather than expecting the full set.","parameters":[{"name":"status","in":"query","schema":{"type":"integer","enum":[1,2,3,4]},"description":"Filter by status"},{"name":"page","in":"query","schema":{"type":"integer","default":1}},{"name":"limit","in":"query","schema":{"type":"integer","default":20}},{"name":"search","in":"query","schema":{"type":"string"},"description":"Search by order code or customer name"},{"name":"date_from","in":"query","schema":{"type":"string","format":"date"}},{"name":"date_to","in":"query","schema":{"type":"string","format":"date"}},{"name":"production_unit_id","in":"query","schema":{"type":"integer"}}],"responses":{"200":{"description":"Paginated order list"}}},"post":{"tags":["Orders"],"summary":"Create order","description":"Creates an order with its line items and returns the stored record. Fires the order.created webhook to every endpoint in the workspace subscribed to it.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["user_id","items"],"properties":{"user_id":{"type":"integer"},"user_name":{"type":"string"},"town_name":{"type":"string"},"mode_of_payment":{"type":"string"},"items":{"type":"array","items":{"type":"object","properties":{"product_name":{"type":"string"},"quantity":{"type":"number"},"rate":{"type":"number"}}}}}}}}},"responses":{"201":{"description":"Order created"}}}},"/orders/{id}":{"get":{"tags":["Orders"],"summary":"Get order by ID","description":"Returns a single order with its line items. Orders belonging to another workspace give 404 rather than 403, so IDs cannot be probed across tenants.","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"description":"Order with details"}}},"put":{"tags":["Orders"],"summary":"Update order","description":"Updates an order and its line items. Scoped to the caller's workspace.","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"description":"Order updated"}}},"delete":{"tags":["Orders"],"summary":"Delete order","description":"Deletes an order in the caller's workspace.","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"description":"Order deleted"}}}},"/orders/{id}/status":{"patch":{"tags":["Orders"],"summary":"Change order status","description":"Moves an order through the status flow: 1 initiated, 2 forwarded, 3 approved, 4 delivered. Any other value is rejected with 400. Setting status 4 fires the order.delivered webhook.","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"integer","enum":[1,2,3,4]}}}}}},"responses":{"200":{"description":"Status updated"}}}},"/users":{"get":{"tags":["Users"],"summary":"List users","description":"Returns users in the caller's workspace. Supports filtering by type (distributor, retailer, employee).","parameters":[{"name":"type","in":"query","schema":{"type":"string","enum":["distributor","retailer","employee"]}},{"name":"page","in":"query","schema":{"type":"integer"}},{"name":"search","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Paginated user list"}}},"post":{"tags":["Users"],"summary":"Create user","description":"Creates a user in the caller's workspace and emails them a link to set their password; no password is set by this call. Fires the user.created webhook.","responses":{"201":{"description":"User created"}}}},"/products":{"get":{"tags":["Products"],"summary":"List products with variants","description":"Returns the product catalogue for the caller's workspace, each product with its variants.","responses":{"200":{"description":"Product list"}}},"post":{"tags":["Products"],"summary":"Create product","description":"Creates a product. Variants are added separately.","responses":{"201":{"description":"Product created"}}}},"/products/{id}/variants":{"post":{"tags":["Products"],"summary":"Add variant to product","description":"Adds a variant (size, SKU, MRP, selling price) to an existing product.","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer"}}],"responses":{"201":{"description":"Variant created"}}}},"/exports/orders":{"get":{"tags":["Exports"],"summary":"Export orders as XLSX or PDF","description":"Streams the report as a file rather than JSON. Defaults to XLSX; pass format=pdf for PDF. Export endpoints have their own rate limit of 5 requests per minute and 50 per hour, well below the general limit.","parameters":[{"name":"format","in":"query","schema":{"type":"string","enum":["xlsx","pdf"],"default":"xlsx"}},{"name":"status","in":"query","schema":{"type":"integer"}},{"name":"date_from","in":"query","schema":{"type":"string","format":"date"}},{"name":"date_to","in":"query","schema":{"type":"string","format":"date"}}],"responses":{"200":{"description":"File download"}}}},"/exports/users":{"get":{"tags":["Exports"],"summary":"Export users","description":"Streams the user list as XLSX, or PDF with format=pdf. Subject to the 5 per minute export rate limit.","parameters":[{"name":"format","in":"query","schema":{"type":"string","enum":["xlsx","pdf"]}},{"name":"type","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"File download"}}}},"/exports/sales":{"get":{"tags":["Exports"],"summary":"Export sales report","description":"Streams the sales report as XLSX, or PDF with format=pdf. Subject to the 5 per minute export rate limit.","responses":{"200":{"description":"File download"}}}},"/exports/attendance":{"get":{"tags":["Exports"],"summary":"Export attendance report","description":"Streams the attendance report as XLSX, or PDF with format=pdf. Subject to the 5 per minute export rate limit.","responses":{"200":{"description":"File download"}}}},"/uploads/report":{"post":{"tags":["Uploads"],"summary":"Upload report file to S3","description":"Accepts a report document up to 30 MB (XLSX, PDF, CSV, DOC) as multipart/form-data and returns a media record.","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"file":{"type":"string","format":"binary"}}}}}},"responses":{"200":{"description":"File uploaded — returns S3 URL"}}}},"/uploads/image":{"post":{"tags":["Uploads"],"summary":"Upload image to S3 (max 5MB)","description":"Accepts a single image up to 5 MB as multipart/form-data and returns a media record. Reference the stored file by its media id; the raw S3 URL is not returned.","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"file":{"type":"string","format":"binary"}}}}}},"responses":{"200":{"description":"Image uploaded"}}}},"/uploads/presigned-url":{"get":{"tags":["Uploads"],"summary":"Get presigned download URL","description":"Deprecated and no longer functional: every call returns 410 Gone. Direct S3 URLs were withdrawn so that media access stays behind workspace authorisation. Fetch files through GET /media/{mediaId} instead.","deprecated":true,"parameters":[{"name":"key","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"410":{"description":"Gone — direct S3 URLs are no longer supported. Use GET /media/{mediaId}."}}}},"/workspace/config":{"get":{"tags":["Workspace"],"summary":"Get workspace configuration","description":"Returns the caller's workspace settings: branding, contact details, and operational defaults.","responses":{"200":{"description":"Config with branding, SMTP, org details"}}},"put":{"tags":["Workspace"],"summary":"Update workspace configuration","description":"Updates workspace settings. Admin only.","responses":{"200":{"description":"Config saved"}}}},"/workspace/invite":{"post":{"tags":["Workspace"],"summary":"Invite member by email","description":"Emails an invitation to join the caller's workspace. Admin only.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["email"],"properties":{"email":{"type":"string"},"role_id":{"type":"integer"},"role_name":{"type":"string"}}}}}},"responses":{"200":{"description":"Invitation sent"}}}},"/workspace/members":{"get":{"tags":["Workspace"],"summary":"List workspace members","description":"Returns the members of the caller's workspace with their roles.","responses":{"200":{"description":"Member list"}}}},"/dashboard/stats":{"get":{"tags":["Dashboard"],"summary":"Get dashboard statistics","description":"Aggregate counts and totals for the caller's workspace, used by the dashboard landing page.","parameters":[{"name":"production_unit_id","in":"query","schema":{"type":"integer"}}],"responses":{"200":{"description":"Order counts, attendance, revenue, collection"}}}},"/dashboard/monthly-sales":{"get":{"tags":["Dashboard"],"summary":"Monthly sales by product class with 7-day chart","description":"Month-to-date sales broken down by product class, plus a seven-day series for charting.","responses":{"200":{"description":"Product class wise sales data"}}}},"/developer/api-keys":{"get":{"tags":["Developer"],"summary":"List API keys","security":[{"BearerAuth":[]}],"description":"Returns key metadata only — the secret is never retrievable after creation.","responses":{"200":{"description":"Key list with prefix, scopes, status, last_used_at"},"403":{"description":"Workspace administrators only"}}},"post":{"tags":["Developer"],"summary":"Create an API key","security":[{"BearerAuth":[]}],"description":"The plaintext key is returned in this response only. Store it immediately — only its SHA-256 hash is kept.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["name"],"properties":{"name":{"type":"string","maxLength":200,"example":"Warehouse sync"},"scopes":{"type":"string","default":"read","description":"Comma-separated. Actions: read, write. Optional resource scopes limit the key to those route groups, e.g. 'read,orders'. Use '*' for full access.","example":"read,orders"},"expires_in_days":{"type":"integer","minimum":1,"maximum":3650,"description":"Omit for a key that never expires","example":90}}}}}},"responses":{"201":{"description":"Key created — plaintext key returned once"},"400":{"description":"Invalid name, scopes, or expiry"}}}},"/developer/api-keys/{id}":{"delete":{"tags":["Developer"],"summary":"Revoke an API key","security":[{"BearerAuth":[]}],"description":"Sets status to 0. The row is kept for audit; the key stops authenticating immediately.","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"description":"Key revoked"},"404":{"description":"Not found"}}}},"/developer/webhooks":{"get":{"tags":["Developer"],"summary":"List webhook endpoints","security":[{"BearerAuth":[]}],"description":"Signing secrets are not included. Response also carries supported_events.","responses":{"200":{"description":"Endpoint list with delivery health"}}},"post":{"tags":["Developer"],"summary":"Register a webhook endpoint","security":[{"BearerAuth":[]}],"description":"URL must be HTTPS and resolve to a public address. The signing secret is returned once; use POST /developer/webhooks/{id}/rotate-secret if it is lost.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["name","url"],"properties":{"name":{"type":"string","example":"Order events"},"url":{"type":"string","format":"uri","example":"https://example.com/hooks/spirestock"},"events":{"type":"array","items":{"type":"string","enum":["order.created","order.delivered","user.created"]},"default":["order.created","order.delivered"]}}}}}},"responses":{"201":{"description":"Endpoint registered — signing secret returned once"},"400":{"description":"Invalid URL or unsupported event"}}}},"/developer/webhooks/{id}":{"put":{"tags":["Developer"],"summary":"Update a webhook endpoint","security":[{"BearerAuth":[]}],"description":"Send status 0 to pause deliveries without deleting the endpoint or rotating its secret. Omitted fields are left unchanged.","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object","properties":{"name":{"type":"string"},"url":{"type":"string","format":"uri"},"events":{"type":"array","items":{"type":"string","enum":["order.created","order.delivered","user.created"]}},"status":{"type":"integer","enum":[0,1],"description":"1 to deliver, 0 to pause"}}}}}},"responses":{"200":{"description":"Endpoint updated"},"400":{"description":"Invalid URL, event, or status"},"404":{"description":"Not found"}}},"delete":{"tags":["Developer"],"summary":"Delete a webhook endpoint","security":[{"BearerAuth":[]}],"description":"Deliveries stop immediately, queued deliveries are cancelled, and the signing secret is discarded.","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"description":"Endpoint deleted"},"404":{"description":"Not found"}}}},"/developer/webhooks/{id}/rotate-secret":{"post":{"tags":["Developer"],"summary":"Rotate a webhook signing secret","security":[{"BearerAuth":[]}],"description":"Returns a new secret once. Deliveries are signed with it from this moment, so update your endpoint before rotating.","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"description":"New signing secret"},"404":{"description":"Not found"}}}},"/developer/webhooks/{id}/test":{"post":{"tags":["Developer"],"summary":"Send a test delivery","security":[{"BearerAuth":[]}],"description":"Sends a webhook.test payload signed exactly like a real event, and reports what your endpoint returned. A failed test still responds 200 — the delivery result is in the body.","parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"integer"}}],"responses":{"200":{"description":"Delivery attempted — see data.delivered and data.response_status"},"404":{"description":"Not found"}}}},"/developer/webhook-deliveries":{"get":{"tags":["Developer"],"summary":"Recent webhook deliveries","security":[{"BearerAuth":[]}],"description":"Delivery log for debugging — what was sent, what came back, what is still queued for retry.","parameters":[{"name":"webhook_id","in":"query","schema":{"type":"integer"},"description":"Limit to one endpoint"},{"name":"status","in":"query","schema":{"type":"string","enum":["pending","sending","sent","dead"]}},{"name":"limit","in":"query","schema":{"type":"integer","default":50,"maximum":200}}],"responses":{"200":{"description":"Delivery attempts, newest first"}}}},"/platform/auth/login":{"post":{"tags":["Platform"],"summary":"Platform admin login","description":"Signs in a platform administrator, not a workspace user. Returns a separate token signed with the platform secret and valid for 24 hours; ordinary user JWTs and API keys are rejected by every /platform route.","security":[],"responses":{"200":{"description":"Platform token"}}}},"/platform/tenants":{"get":{"tags":["Platform"],"summary":"List all tenants/workspaces","description":"Lists every workspace on the platform. Requires a platform admin token.","security":[{"PlatformAuth":[]}],"responses":{"200":{"description":"Tenant list with stats"}}}},"/platform/stats":{"get":{"tags":["Platform"],"summary":"Platform-wide statistics","description":"Cross-tenant totals for the platform operator. Requires a platform admin token.","security":[{"PlatformAuth":[]}],"responses":{"200":{"description":"Total tenants, users, orders"}}}},"/health":{"get":{"tags":["Health"],"summary":"API health check","description":"Liveness probe. Returns 200 while the process is serving; unauthenticated, so it can be used by load balancers and uptime monitors.","security":[],"responses":{"200":{"description":"Status OK"}}}}},"x-coverage":{"total":770,"described":50,"generated":720,"percent":6.493506493506493}}