{"openapi":"3.1.0","info":{"title":"TruLink Enterprise Finance Platform API","version":"1.0.0","description":"High-performance, secure backend API for the TruLink sovereign ledger, tokenized assets, and custodial operations."},"servers":[{"url":"/api/v1","description":"Local and Container Ingress Gateway"}],"tags":[{"name":"Authentication","description":"Session control, JWT creation, and multi-factor authorization"},{"name":"Users","description":"Customer profiles, compliance verification status, and limits"},{"name":"Wallets","description":"Multi-currency ledger wallets, available/held balances"},{"name":"Transfers","description":"Internal book-to-book and cross-border money movements"},{"name":"Crypto","description":"Institutional digital asset custody, addresses, and withdrawals"},{"name":"Investments","description":"Asset subscriptions, unitized asset trading, and order routing"},{"name":"Wealth","description":"Portfolio valuation, dynamic performance, and wealth score metrics"},{"name":"Administration","description":"Role-Based Access Control, audit logs, compliance reports, and sessions"},{"name":"Notifications","description":"In-app messages, SMS and email alerts dispatcher status"},{"name":"Reports","description":"Dynamic financial compilation reports and quarterly statements generation"},{"name":"System","description":"Core diagnostics, real-time telemetry, scheduler management, and SMTP health"}],"paths":{"/auth/register":{"post":{"tags":["Authentication"],"summary":"Register a new customer account","description":"Registers an enterprise profile, provisions a standard customer role, and triggers an initial verification code dispatch.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["email","password","firstName","lastName"],"properties":{"email":{"type":"string","format":"email","description":"Unique email address to register.","examples":["customer@example.com"]},"password":{"type":"string","minLength":8,"description":"Minimum 8 character secure password.","examples":["SuperSecurePassword123!"]},"firstName":{"type":"string","description":"Legal first name.","examples":["Jane"]},"lastName":{"type":"string","description":"Legal last name.","examples":["Doe"]},"phone":{"type":"string","description":"Optional mobile number in E.164 format for multi-factor SMS auth.","examples":["+1234567890"]}}}}}},"responses":{"201":{"description":"User successfully created","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"message":{"type":"string","examples":["Enterprise profile registered and standard Customer role provisioned."]},"data":{"type":"object","properties":{"id":{"type":"string","format":"uuid","examples":["00000000-0000-0000-0000-000000000001"]},"email":{"type":"string","examples":["customer@example.com"]}}}}}}}},"400":{"description":"Validation parameters mismatch","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"409":{"description":"Duplicate registration / email already registered","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/login":{"post":{"tags":["Authentication"],"summary":"Authenticate credentials and issue JWT tokens","description":"Verifies credentials through the identity provider (either via direct email/password or by passing pre-authenticated userId/supabaseJwt), records hardware security fingerprints, evaluates device trust context, and registers active sessions.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["email"],"properties":{"userId":{"type":"string","format":"uuid","description":"Supabase authenticating unique user ID (required if not providing password).","examples":["00000000-0000-0000-0000-000000000001"]},"email":{"type":"string","format":"email","description":"The registered user email address.","examples":["customer@example.com"]},"password":{"type":"string","description":"Secure user account password (required if not providing supabaseJwt).","examples":["SuperSecurePassword123!"]},"supabaseJwt":{"type":"string","description":"Sovereign OAuth/IDP provider JWT token (required if not providing password).","examples":["eyJhbGciOiJIUzI1Ni..."]},"deviceFingerprint":{"type":"string","description":"Optional hardware tracking identifier.","examples":["df-817a-c943-3001"]},"deviceName":{"type":"string","description":"Human readable system host name.","examples":["iPhone 15 Pro Max"]},"browser":{"type":"string","description":"Client browser product.","examples":["Safari Mobile"]},"os":{"type":"string","description":"Operating system runtime platform.","examples":["iOS 17.4"]},"country":{"type":"string","description":"GeoIP ISO-3166-1 alpha-2 location context.","examples":["US"]}}}}}},"responses":{"200":{"description":"Successfully authenticated","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"message":{"type":"string","examples":["Successfully authenticated session with TruLink Identity Layer."]},"data":{"type":"object","properties":{"requiresMfa":{"type":"boolean","examples":[false]},"isDeviceTrusted":{"type":"boolean","examples":[true]},"profile":{"type":"object"}}}}}}}},"400":{"description":"Missing required parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Invalid credentials payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/forgot-password":{"post":{"tags":["Authentication"],"summary":"Request a password reset link","description":"Checks user profile presence and dispatches a secure password recovery email through the Identity Provider.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["email"],"properties":{"email":{"type":"string","format":"email","description":"The registered user email address.","examples":["customer@example.com"]},"redirectTo":{"type":"string","format":"uri","description":"Custom redirect URL after the reset link is clicked.","examples":["https://trulink.finance/reset-password"]}}}}}},"responses":{"200":{"description":"Forgot password request processed (link dispatched if account exists)","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"message":{"type":"string","examples":["If the email address exists in our system, a password reset link has been dispatched."]}}}}}},"400":{"description":"Missing required email parameter","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/reset-password":{"post":{"tags":["Authentication"],"summary":"Reset user password","description":"Resets and replaces the password using a verified identity provider token or active authorization token context.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["password"],"properties":{"password":{"type":"string","minLength":8,"description":"The new secure password.","examples":["NewSuperSecurePassword123!"]},"accessToken":{"type":"string","description":"The access token received from the password reset link. Alternatively, provide it in the Authorization bearer header.","examples":["eyJhbGciOiJIUzI1Ni..."]}}}}}},"responses":{"200":{"description":"Password reset successful","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"message":{"type":"string","examples":["Your password has been successfully updated."]}}}}}},"400":{"description":"Expired, invalid token or missing parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/refresh":{"post":{"tags":["Authentication"],"summary":"Refresh active user sessions","description":"Refreshes standard token context through the identity provider to generate new credentials.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["refreshToken"],"properties":{"refreshToken":{"type":"string","description":"The valid refresh token issued during login.","examples":["ref_token_abc123..."]}}}}}},"responses":{"200":{"description":"Token refreshed successfully","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"data":{"type":"object","properties":{"session":{"type":"object"},"user":{"type":"object"}}}}}}}},"400":{"description":"Invalid or expired refresh token","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/refresh-token":{"post":{"tags":["Authentication"],"summary":"Refresh active user sessions (alternative endpoint)","description":"Alias to refresh active user sessions through the identity provider.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["refreshToken"],"properties":{"refreshToken":{"type":"string","description":"The valid refresh token issued during login.","examples":["ref_token_abc123..."]}}}}}},"responses":{"200":{"description":"Token refreshed successfully","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"data":{"type":"object","properties":{"session":{"type":"object"},"user":{"type":"object"}}}}}}}},"400":{"description":"Invalid or expired refresh token","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/verification/verify":{"post":{"tags":["Authentication"],"summary":"Verify email or phone verification code","description":"Validates a 6-digit verification OTP code. Transitions status from Pending Verification to Active upon successful email validation.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["code"],"anyOf":[{"required":["identifier"]},{"required":["email"]},{"required":["phone"]}],"properties":{"identifier":{"type":"string","description":"The email address or phone number being verified.","examples":["customer@example.com"]},"email":{"type":"string","format":"email","description":"Alternative direct email field.","examples":["customer@example.com"]},"phone":{"type":"string","description":"Alternative direct phone field.","examples":["+1234567890"]},"code":{"type":"string","description":"The 6-digit numeric OTP code.","examples":["123456"]}}}}}},"responses":{"200":{"description":"Code validated successfully","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"message":{"type":"string","examples":["Verified"]}}}}}},"400":{"description":"Validation, expired, invalid, or already verified code error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"},"examples":{"ValidationError":{"summary":"Validation error: parameters missing","value":{"success":false,"error":"identifier (or email/phone) and code are required"}},"ExpiredOrInvalidCode":{"summary":"Invalid or expired OTP code","value":{"success":false,"error":"Invalid or expired code"}}}}}}}}},"/verification/resend":{"post":{"tags":["Authentication"],"summary":"Request a new OTP verification code","description":"Generates and sends a new 6-digit verification code to the specified email or phone number. Subject to standard API rate limiting.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["type"],"anyOf":[{"required":["identifier"]},{"required":["email"]},{"required":["phone"]}],"properties":{"identifier":{"type":"string","description":"The email address or phone number.","examples":["customer@example.com"]},"email":{"type":"string","format":"email","description":"Alternative field for email.","examples":["customer@example.com"]},"phone":{"type":"string","description":"Alternative field for phone.","examples":["+1234567890"]},"type":{"type":"string","enum":["email","phone"],"description":"Type of verification channel.","examples":["email"]}}}}}},"responses":{"200":{"description":"OTP code generated and dispatched successfully","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"message":{"type":"string","examples":["Code resent"]}}}}}},"400":{"description":"Invalid parameters or channel type mismatch","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"429":{"description":"Too many verification code requests. Rate limit exceeded.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/users/profile":{"get":{"tags":["Users"],"summary":"Retrieve authenticated profile details","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Profile loaded successfully","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"data":{"type":"object","properties":{"id":{"type":"string","examples":["00000000-0000-0000-0000-000000000001"]},"email":{"type":"string","examples":["client@example.com"]},"status":{"type":"string","examples":["Verified"]}}}}}}}},"401":{"description":"Unauthorized access","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"tags":["General"],"summary":"Endpoint: PUT /users/profile","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"patch":{"tags":["General"],"summary":"Endpoint: PATCH /users/profile","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/accounts":{"get":{"tags":["Accounts & Products"],"summary":"Retrieve user financial accounts and balance breakdown","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"User accounts retrieved successfully","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"data":{"type":"object","properties":{"accounts":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","examples":["w_8273419562"]},"account_number":{"type":"string","examples":["8273419562"]},"account_name":{"type":"string","examples":["Current Account"]},"account_type":{"type":"string","examples":["current"]},"currency":{"type":"string","examples":["USD"]},"balance":{"type":"number","examples":[0]}}}},"totalBalance":{"type":"number","examples":[0]},"availableBalance":{"type":"number","examples":[0]}}}}}}}}}}},"/accounts/types":{"get":{"tags":["Accounts & Products"],"summary":"Get available account types and eligibility requirements","responses":{"200":{"description":"Account types loaded successfully","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","examples":["current"]},"name":{"type":"string","examples":["Current Account"]},"description":{"type":"string","examples":["Day-to-day banking"]},"requirements":{"type":"array","items":{"type":"string"}}}}}}}}}}}}},"/accounts/create":{"post":{"tags":["Accounts & Products"],"summary":"Explicitly provision a new financial account or wallet product","security":[{"BearerAuth":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["account_type"],"properties":{"account_type":{"type":"string","description":"Product type: current, savings, multicurrency, investment, crypto","examples":["current"]},"currency":{"type":"string","description":"ISO currency code or crypto ticker","examples":["USD"]}}}}}},"responses":{"201":{"description":"Account successfully provisioned from backend","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"message":{"type":"string","examples":["Current Account successfully provisioned"]},"data":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"account_number":{"type":"string","examples":["8273419562"]},"account_name":{"type":"string","examples":["Current Account"]},"account_type":{"type":"string","examples":["Cash"]},"currency":{"type":"string","examples":["USD"]},"balance":{"type":"number","examples":[0]},"ledger_id":{"type":"string","format":"uuid"},"wallet_id":{"type":"string","format":"uuid"},"product_id":{"type":"string","format":"uuid"},"created_at":{"type":"string","format":"date-time"}}}}}}}}}}},"/wallets":{"get":{"tags":["Wallets"],"summary":"List available ledger wallets","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Wallets list retrieved successfully","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"data":{"type":"array","items":{"$ref":"#/components/schemas/Wallet"}}}}}}}}}},"/transfers":{"post":{"tags":["Transfers"],"summary":"Initiate a money transfer request","security":[{"BearerAuth":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["sourceWalletId","destinationWalletId","amount"],"properties":{"sourceWalletId":{"type":"string","format":"uuid","examples":["123e4567-e89b-12d3-a456-426614174000"]},"destinationWalletId":{"type":"string","format":"uuid","examples":["987f6543-e21b-32d1-b654-987654321000"]},"amount":{"type":"number","examples":[1500]},"description":{"type":"string","examples":["Invoice Settlement"]}}}}}},"responses":{"202":{"description":"Transfer request submitted and routed to Workflow engine"}}}},"/crypto/custody/addresses":{"get":{"tags":["Crypto"],"summary":"Generate custody deposit address","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Custodial address mapping returned","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"data":{"type":"object","properties":{"address":{"type":"string","examples":["bc1qar0srrr7xfkvy5l643lyecc57997as09un08hs"]},"currency":{"type":"string","examples":["BTC"]}}}}}}}}}}},"/investments/products":{"get":{"tags":["Investments"],"summary":"Get unitized fund products catalog","responses":{"200":{"description":"Catalog retrieved successfully","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"data":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string","format":"uuid","examples":["610c8400-e29b-41d4-a716-446655440001"]},"name":{"type":"string","examples":["Sovereign Yield Fund Token"]},"ticker":{"type":"string","examples":["TL-SYF"]},"unitPrice":{"type":"number","examples":[10]}}}}}}}}}}}},"/customer-portfolios/holdings":{"get":{"tags":["Wealth"],"summary":"Retrieve customer asset weights and allocations","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Asset allocation loaded successfully"}}}},"/notifications/history":{"get":{"tags":["Notifications"],"summary":"Retrieve in-app and dispatch logs","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"History loaded successfully"}}}},"/approval/pending":{"get":{"tags":["Administration"],"summary":"Fetch pending workflows requiring multi-sig signature","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"List of pending reviews retrieved successfully"}}}},"/compliance/status":{"get":{"tags":["Administration"],"summary":"Check KYC/AML block status of client","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Compliance status reports fetched successfully"}}}},"/audit/logs":{"get":{"tags":["Administration"],"summary":"Retrieve immutable system audit logs (Admin)","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Audit trail fetched successfully"}}}},"/system/health":{"get":{"tags":["System"],"summary":"Retrieve real-time platform system health checks","responses":{"200":{"description":"System metrics and database ping statuses","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"data":{"type":"object","properties":{"status":{"type":"string","examples":["HEALTHY"]},"uptime":{"type":"number","examples":[3410]}}}}}}}}}}},"/system/smtp":{"get":{"tags":["System"],"summary":"Resend API connectivity and verification diagnostic report","description":"Returns real-time diagnostics for the Resend email provider status, configuration settings, and API verification status.","responses":{"200":{"description":"Resend API diagnostics report","content":{"application/json":{"schema":{"type":"object","properties":{"provider":{"type":"string","examples":["ResendEmailProvider"]},"mode":{"type":"string","examples":["Production"]},"verified":{"type":"boolean","examples":[true]},"status":{"type":"string","examples":["Healthy"]},"lastSuccessfulConnection":{"type":"string","format":"date-time","nullable":true,"examples":["2026-07-18T11:16:56.000Z"]},"lastFailedConnection":{"type":"object","nullable":true,"properties":{"timestamp":{"type":"string","format":"date-time"},"error":{"type":"string"}}},"fromEmail":{"type":"string","examples":["noreply@trulinkfinance.com"]},"fromName":{"type":"string","examples":["TruLink Finance"]},"hasApiKey":{"type":"boolean","examples":[true]}}}}}}}}},"/system/smtp-diagnostics":{"get":{"tags":["System"],"summary":"Alias endpoint for Resend API connectivity diagnostics","description":"Returns identical real-time diagnostics as /system/smtp to check Resend API verification and configuration status.","responses":{"200":{"description":"Resend API diagnostics report","content":{"application/json":{"schema":{"type":"object","properties":{"provider":{"type":"string","examples":["ResendEmailProvider"]},"mode":{"type":"string","examples":["Production"]},"verified":{"type":"boolean","examples":[true]},"status":{"type":"string","examples":["Healthy"]},"lastSuccessfulConnection":{"type":"string","format":"date-time","nullable":true,"examples":["2026-07-18T11:16:56.000Z"]},"lastFailedConnection":{"type":"object","nullable":true,"properties":{"timestamp":{"type":"string","format":"date-time"},"error":{"type":"string"}}},"fromEmail":{"type":"string","examples":["noreply@trulinkfinance.com"]},"fromName":{"type":"string","examples":["TruLink Finance"]},"hasApiKey":{"type":"boolean","examples":[true]}}}}}}}}},"/":{"get":{"tags":["General"],"summary":"Endpoint: GET /","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/verification/verify-email":{"post":{"tags":["General"],"summary":"Endpoint: POST /verification/verify-email","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/verification/status":{"get":{"tags":["General"],"summary":"Endpoint: GET /verification/status","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/verification/kyc":{"post":{"tags":["General"],"summary":"Endpoint: POST /verification/kyc","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/health/":{"get":{"tags":["System"],"summary":"Endpoint: GET /health/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/health/migrations":{"get":{"tags":["System"],"summary":"Endpoint: GET /health/migrations","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/status":{"get":{"tags":["System"],"summary":"Endpoint: GET /system/status","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/scheduler/run":{"post":{"tags":["System"],"summary":"Endpoint: POST /system/scheduler/run","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/queue/retry":{"post":{"tags":["System"],"summary":"Endpoint: POST /system/queue/retry","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/workers":{"get":{"tags":["System"],"summary":"Endpoint: GET /system/workers","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/snapshots":{"get":{"tags":["System"],"summary":"Endpoint: GET /system/snapshots","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/logs":{"get":{"tags":["System"],"summary":"Endpoint: GET /system/logs","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/logs/errors":{"get":{"tags":["System"],"summary":"Endpoint: GET /system/logs/errors","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/logs/security":{"get":{"tags":["System"],"summary":"Endpoint: GET /system/logs/security","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/logs/performance":{"get":{"tags":["System"],"summary":"Endpoint: GET /system/logs/performance","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/metrics":{"get":{"tags":["System"],"summary":"Endpoint: GET /system/metrics","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/observability/health":{"get":{"tags":["System"],"summary":"Endpoint: GET /system/observability/health","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/startup":{"get":{"tags":["System"],"summary":"Endpoint: GET /system/startup","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/configuration":{"get":{"tags":["System"],"summary":"Endpoint: GET /system/configuration","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/documentation":{"get":{"tags":["System"],"summary":"Endpoint: GET /system/documentation","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/system/documentation/openapi.json":{"get":{"tags":["System"],"summary":"Endpoint: GET /system/documentation/openapi.json","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/placeholder":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/placeholder","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/google/url":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/google/url","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/google/url","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/google/verify":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/google/verify","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/google/login":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/google/login","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/google-login":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/google-login","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/googlelogin":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/googlelogin","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/google/callback":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/google/callback","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/logout":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/logout","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/profile":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/profile","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"tags":["Authentication"],"summary":"Endpoint: PUT /auth/profile","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"patch":{"tags":["Authentication"],"summary":"Endpoint: PATCH /auth/profile","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/me":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/me","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"tags":["Authentication"],"summary":"Endpoint: PUT /auth/me","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"patch":{"tags":["Authentication"],"summary":"Endpoint: PATCH /auth/me","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/preferences":{"put":{"tags":["Authentication"],"summary":"Endpoint: PUT /auth/preferences","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/register-device":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/register-device","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/devices/register":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/devices/register","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/devices":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/devices","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/devices","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/devices/trust":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/devices/trust","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/devices/revoke":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/devices/revoke","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/login-history":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/login-history","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/2fa/setup":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/2fa/setup","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/mfa/setup":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/mfa/setup","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/2fa/enable":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/2fa/enable","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/mfa/enable":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/mfa/enable","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/2fa/verify":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/2fa/verify","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/mfa/verify":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/mfa/verify","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/2fa/disable":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/2fa/disable","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/mfa/disable":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/mfa/disable","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/2fa/backup-codes/regenerate":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/2fa/backup-codes/regenerate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/2fa/status":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/2fa/status","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/mfa/status":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/mfa/status","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/login":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/admin/login","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/assign-role":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/admin/assign-role","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/revoke-role":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/admin/revoke-role","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/grant-permission":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/admin/grant-permission","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/revoke-permission":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/admin/revoke-permission","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/sessions":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/admin/sessions","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/sessions/revoke":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/admin/sessions/revoke","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/audit-logs":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/admin/audit-logs","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/service-accounts":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/admin/service-accounts","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/admin/service-accounts","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/service-accounts/{id}":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/admin/service-accounts/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/service-accounts/{id}/status":{"put":{"tags":["Authentication"],"summary":"Endpoint: PUT /auth/admin/service-accounts/{id}/status","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/service-accounts/{id}/keys":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/admin/service-accounts/{id}/keys","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/service-accounts/keys/{keyId}/revoke":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /auth/admin/service-accounts/keys/{keyId}/revoke","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"parameters":[{"name":"keyId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic keyId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/service-accounts/activity-logs":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/admin/service-accounts/activity-logs","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/auth/admin/service-accounts/audit-events":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /auth/admin/service-accounts/audit-events","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/users/":{"get":{"tags":["General"],"summary":"Endpoint: GET /users/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/users/me":{"get":{"tags":["General"],"summary":"Endpoint: GET /users/me","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"tags":["General"],"summary":"Endpoint: PUT /users/me","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"patch":{"tags":["General"],"summary":"Endpoint: PATCH /users/me","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/users/{id}":{"get":{"tags":["General"],"summary":"Endpoint: GET /users/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"tags":["General"],"summary":"Endpoint: PUT /users/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"patch":{"tags":["General"],"summary":"Endpoint: PATCH /users/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/users/{id}/status":{"put":{"tags":["General"],"summary":"Endpoint: PUT /users/{id}/status","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/accounts/":{"get":{"tags":["General"],"summary":"Endpoint: GET /accounts/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["General"],"summary":"Endpoint: POST /accounts/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/accounts/open":{"post":{"tags":["General"],"summary":"Endpoint: POST /accounts/open","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/":{"post":{"tags":["Wallets"],"summary":"Endpoint: POST /wallets/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"tags":["Wallets"],"summary":"Endpoint: GET /wallets/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/system":{"post":{"tags":["Wallets"],"summary":"Endpoint: POST /wallets/system","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/system/all":{"get":{"tags":["Wallets"],"summary":"Endpoint: GET /wallets/system/all","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/snapshots/all":{"get":{"tags":["Wallets"],"summary":"Endpoint: GET /wallets/snapshots/all","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/{id}":{"get":{"tags":["Wallets"],"summary":"Endpoint: GET /wallets/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/{id}/snapshot":{"post":{"tags":["Wallets"],"summary":"Endpoint: POST /wallets/{id}/snapshot","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/{id}/snapshot/latest":{"get":{"tags":["Wallets"],"summary":"Endpoint: GET /wallets/{id}/snapshot/latest","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/{id}/recalculate":{"post":{"tags":["Wallets"],"summary":"Endpoint: POST /wallets/{id}/recalculate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/{id}/activate":{"post":{"tags":["Wallets"],"summary":"Endpoint: POST /wallets/{id}/activate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/{id}/freeze":{"post":{"tags":["Wallets"],"summary":"Endpoint: POST /wallets/{id}/freeze","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/{id}/lock":{"post":{"tags":["Wallets"],"summary":"Endpoint: POST /wallets/{id}/lock","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/{id}/unlock":{"post":{"tags":["Wallets"],"summary":"Endpoint: POST /wallets/{id}/unlock","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/{id}/reserve":{"post":{"tags":["Wallets"],"summary":"Endpoint: POST /wallets/{id}/reserve","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wallets/{id}/release":{"post":{"tags":["Wallets"],"summary":"Endpoint: POST /wallets/{id}/release","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/ledger/post":{"post":{"tags":["General"],"summary":"Endpoint: POST /ledger/post","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/ledger/multi-asset/swap":{"post":{"tags":["General"],"summary":"Endpoint: POST /ledger/multi-asset/swap","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/ledger/reconcile/sweep":{"post":{"tags":["General"],"summary":"Endpoint: POST /ledger/reconcile/sweep","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/ledger/reconcile/{walletId}":{"post":{"tags":["General"],"summary":"Endpoint: POST /ledger/reconcile/{walletId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"walletId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic walletId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/ledger/history/{walletId}":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /ledger/history/{walletId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"walletId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic walletId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/transfers/limits":{"get":{"tags":["Transfers"],"summary":"Endpoint: GET /transfers/limits","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/transfers/":{"get":{"tags":["Transfers"],"summary":"Endpoint: GET /transfers/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/networks/":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/networks/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/networks/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/networks/{id}":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/networks/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/networks/{id}/status":{"patch":{"tags":["Crypto"],"summary":"Endpoint: PATCH /crypto/networks/{id}/status","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/assets/":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/assets/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/assets/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/assets/{id}":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/assets/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/assets/{id}/status":{"patch":{"tags":["Crypto"],"summary":"Endpoint: PATCH /crypto/assets/{id}/status","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/deposits/":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/deposits/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/deposits/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/deposits/{id}":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/deposits/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/deposits/user/{userId}":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/deposits/user/{userId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic userId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/deposits/{id}/confirmations":{"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/deposits/{id}/confirmations","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/withdrawals/eligibility":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/withdrawals/eligibility","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/withdrawals/eligibility/{userId}":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/withdrawals/eligibility/{userId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic userId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/withdrawals/":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/withdrawals/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/withdrawals/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/withdrawals/{id}":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/withdrawals/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/withdrawals/user/{userId}":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/withdrawals/user/{userId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic userId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/blockchain/health":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/blockchain/health","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/blockchain/health/{networkId}":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/blockchain/health/{networkId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"parameters":[{"name":"networkId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic networkId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/blockchain/health/{networkId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"parameters":[{"name":"networkId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic networkId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/blockchain/health/tick":{"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/blockchain/health/tick","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/blockchain/simulate/incoming":{"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/blockchain/simulate/incoming","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/blockchain/simulate/reorg":{"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/blockchain/simulate/reorg","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/blockchain/simulate/doublespend":{"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/blockchain/simulate/doublespend","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/custody/wallets":{"get":{"tags":["Wallets"],"summary":"Endpoint: GET /crypto/custody/wallets","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Wallets"],"summary":"Endpoint: POST /crypto/custody/wallets","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/custody/sweeps":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/custody/sweeps","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/custody/sweeps","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/custody/wallets/health":{"get":{"tags":["Wallets"],"summary":"Endpoint: GET /crypto/custody/wallets/health","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/custody/wallets/{id}":{"get":{"tags":["Wallets"],"summary":"Endpoint: GET /crypto/custody/wallets/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/custody/simulate/deposit":{"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/custody/simulate/deposit","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/custody/simulate/funding":{"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/custody/simulate/funding","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/custody/wallets/{id}/rotate":{"post":{"tags":["Wallets"],"summary":"Endpoint: POST /crypto/custody/wallets/{id}/rotate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/addresses":{"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/addresses","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/addresses/user/{userId}":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/addresses/user/{userId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic userId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/addresses/{id}/rotate":{"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/addresses/{id}/rotate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/addresses/validate":{"post":{"tags":["Crypto"],"summary":"Endpoint: POST /crypto/addresses/validate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/addresses/verify/{address}":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /crypto/addresses/verify/{address}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"address","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic address identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/crypto/addresses/{id}/label":{"patch":{"tags":["Crypto"],"summary":"Endpoint: PATCH /crypto/addresses/{id}/label","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investments/":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investments/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/cards/":{"get":{"tags":["General"],"summary":"Endpoint: GET /cards/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["General"],"summary":"Endpoint: POST /cards/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/beneficiaries/":{"post":{"tags":["General"],"summary":"Endpoint: POST /beneficiaries/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"tags":["General"],"summary":"Endpoint: GET /beneficiaries/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/beneficiaries/favorites":{"get":{"tags":["General"],"summary":"Endpoint: GET /beneficiaries/favorites","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/beneficiaries/{id}":{"get":{"tags":["General"],"summary":"Endpoint: GET /beneficiaries/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"tags":["General"],"summary":"Endpoint: PUT /beneficiaries/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"delete":{"tags":["General"],"summary":"Endpoint: DELETE /beneficiaries/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/beneficiaries/{id}/validate":{"post":{"tags":["General"],"summary":"Endpoint: POST /beneficiaries/{id}/validate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/money-movement/":{"post":{"tags":["General"],"summary":"Endpoint: POST /money-movement/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"tags":["General"],"summary":"Endpoint: GET /money-movement/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/money-movement/{id}":{"get":{"tags":["General"],"summary":"Endpoint: GET /money-movement/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/money-movement/{id}/approve":{"post":{"tags":["General"],"summary":"Endpoint: POST /money-movement/{id}/approve","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/money-movement/{id}/reject":{"post":{"tags":["General"],"summary":"Endpoint: POST /money-movement/{id}/reject","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/payments/":{"post":{"tags":["General"],"summary":"Endpoint: POST /payments/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"tags":["General"],"summary":"Endpoint: GET /payments/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/payments/{id}":{"get":{"tags":["General"],"summary":"Endpoint: GET /payments/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/payments/{id}/approve":{"post":{"tags":["General"],"summary":"Endpoint: POST /payments/{id}/approve","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/payments/{id}/reject":{"post":{"tags":["General"],"summary":"Endpoint: POST /payments/{id}/reject","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/routing/":{"get":{"tags":["General"],"summary":"Endpoint: GET /routing/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/templates/":{"post":{"tags":["General"],"summary":"Endpoint: POST /templates/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"tags":["General"],"summary":"Endpoint: GET /templates/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/templates/{id}":{"get":{"tags":["General"],"summary":"Endpoint: GET /templates/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"tags":["General"],"summary":"Endpoint: PUT /templates/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"delete":{"tags":["General"],"summary":"Endpoint: DELETE /templates/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/scheduling/":{"post":{"tags":["General"],"summary":"Endpoint: POST /scheduling/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"get":{"tags":["General"],"summary":"Endpoint: GET /scheduling/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/scheduling/{id}":{"get":{"tags":["General"],"summary":"Endpoint: GET /scheduling/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/scheduling/{id}/pause":{"post":{"tags":["General"],"summary":"Endpoint: POST /scheduling/{id}/pause","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/scheduling/{id}/resume":{"post":{"tags":["General"],"summary":"Endpoint: POST /scheduling/{id}/resume","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/scheduling/{id}/cancel":{"post":{"tags":["General"],"summary":"Endpoint: POST /scheduling/{id}/cancel","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/scheduling/sweep":{"post":{"tags":["General"],"summary":"Endpoint: POST /scheduling/sweep","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/notifications/":{"get":{"tags":["Notifications"],"summary":"Endpoint: GET /notifications/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/notifications/unread":{"get":{"tags":["Notifications"],"summary":"Endpoint: GET /notifications/unread","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/notifications/unread-count":{"get":{"tags":["Notifications"],"summary":"Endpoint: GET /notifications/unread-count","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/notifications/read-all":{"patch":{"tags":["Notifications"],"summary":"Endpoint: PATCH /notifications/read-all","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/notifications/{id}/read":{"patch":{"tags":["Notifications"],"summary":"Endpoint: PATCH /notifications/{id}/read","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/notifications/{id}":{"delete":{"tags":["Notifications"],"summary":"Endpoint: DELETE /notifications/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/notifications/preferences":{"get":{"tags":["Notifications"],"summary":"Endpoint: GET /notifications/preferences","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"tags":["Notifications"],"summary":"Endpoint: PUT /notifications/preferences","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/notifications/templates":{"get":{"tags":["Notifications"],"summary":"Endpoint: GET /notifications/templates","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/watchlist/":{"get":{"tags":["General"],"summary":"Endpoint: GET /watchlist/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/watchlists/":{"get":{"tags":["General"],"summary":"Endpoint: GET /watchlists/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/support/":{"get":{"tags":["General"],"summary":"Endpoint: GET /support/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/auth/login":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /admin/auth/login","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/auth/logout":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /admin/auth/logout","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/auth/validate":{"get":{"tags":["Authentication"],"summary":"Endpoint: GET /admin/auth/validate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/auth/refresh-token":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /admin/auth/refresh-token","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/auth/reset-password":{"post":{"tags":["Authentication"],"summary":"Endpoint: POST /admin/auth/reset-password","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/users/":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/users/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/users/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/users/{id}":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/users/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/users/{id}/freeze":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/users/{id}/freeze","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/users/{id}/unfreeze":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/users/{id}/unfreeze","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/users/{id}/override":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/users/{id}/override","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/roles/":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/roles/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/roles/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/roles/{id}":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/roles/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"tags":["Administration"],"summary":"Endpoint: PUT /admin/roles/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/permissions/":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/permissions/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/permissions/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/sessions/":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/sessions/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/sessions/revoke-others":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/sessions/revoke-others","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/sessions/{id}/revoke":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/sessions/{id}/revoke","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/dashboard/summary":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /admin/dashboard/summary","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/dashboard/queues":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /admin/dashboard/queues","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/dashboard/health":{"get":{"tags":["System"],"summary":"Endpoint: GET /admin/dashboard/health","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/dashboard/alerts":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /admin/dashboard/alerts","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/dashboard/activity":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /admin/dashboard/activity","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/customers/":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/customers/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/customers/{id}":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/customers/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/customers/{id}/state":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/customers/{id}/state","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/customers/{id}/notes":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/customers/{id}/notes","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/wallets/":{"get":{"tags":["Wallets"],"summary":"Endpoint: GET /admin/wallets/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/wallets/{id}":{"get":{"tags":["Wallets"],"summary":"Endpoint: GET /admin/wallets/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/wallets/{id}/state":{"post":{"tags":["Wallets"],"summary":"Endpoint: POST /admin/wallets/{id}/state","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/wallets/{id}/notes":{"post":{"tags":["Wallets"],"summary":"Endpoint: POST /admin/wallets/{id}/notes","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/portfolios/":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/portfolios/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/portfolios/{id}":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/portfolios/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/portfolios/{id}/notes":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/portfolios/{id}/notes","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/search/":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/search/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/approval-center/queues":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/approval-center/queues","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/approval-center/pending":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/approval-center/pending","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/approval-center/{id}":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/approval-center/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/approval-center/approve":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/approval-center/approve","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/approval-center/reject":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/approval-center/reject","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/approval-center/return":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/approval-center/return","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/approval-center/escalate":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/approval-center/escalate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/approval-center/assign":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/approval-center/assign","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/approval-center/note":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/approval-center/note","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/approval-center/request-info":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /admin/approval-center/request-info","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/audit/search":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/audit/search","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/audit/":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/audit/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/audit/{id}":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/audit/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/compliance/dashboard":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /admin/compliance/dashboard","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/compliance/reports":{"get":{"tags":["Reports"],"summary":"Endpoint: GET /admin/compliance/reports","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/admin/":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /admin/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/compliance/":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /compliance/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/audit/":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /audit/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-profile/":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-profile/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Investments"],"summary":"Endpoint: POST /investment-profile/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/risk-tolerance/questionnaire":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /risk-tolerance/questionnaire","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/risk-tolerance/":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /risk-tolerance/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Investments"],"summary":"Endpoint: POST /risk-tolerance/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-goals/":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-goals/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Investments"],"summary":"Endpoint: POST /investment-goals/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-goals/{id}":{"patch":{"tags":["Investments"],"summary":"Endpoint: PATCH /investment-goals/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"delete":{"tags":["Investments"],"summary":"Endpoint: DELETE /investment-goals/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/financial-objectives/":{"get":{"tags":["General"],"summary":"Endpoint: GET /financial-objectives/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["General"],"summary":"Endpoint: POST /financial-objectives/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/financial-objectives/{id}":{"patch":{"tags":["General"],"summary":"Endpoint: PATCH /financial-objectives/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"delete":{"tags":["General"],"summary":"Endpoint: DELETE /financial-objectives/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wealth-score/":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /wealth-score/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wealth-score/config":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /wealth-score/config","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Wealth"],"summary":"Endpoint: POST /wealth-score/config","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-recommendation/":{"get":{"tags":["General"],"summary":"Endpoint: GET /portfolio-recommendation/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/asset-registry/":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /asset-registry/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Investments"],"summary":"Endpoint: POST /asset-registry/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/asset-registry/{id}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /asset-registry/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"tags":["Investments"],"summary":"Endpoint: PUT /asset-registry/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"delete":{"tags":["Investments"],"summary":"Endpoint: DELETE /asset-registry/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/asset-registry/symbol/{symbol}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /asset-registry/symbol/{symbol}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"symbol","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic symbol identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-products/":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-products/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Investments"],"summary":"Endpoint: POST /investment-products/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-products/performance/benchmarks":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-products/performance/benchmarks","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-products/{id}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-products/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"tags":["Investments"],"summary":"Endpoint: PUT /investment-products/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"delete":{"tags":["Investments"],"summary":"Endpoint: DELETE /investment-products/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-products/{id}/performance":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-products/{id}/performance","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-products/{id}/compare/{benchmarkId}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-products/{id}/compare/{benchmarkId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"},{"name":"benchmarkId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic benchmarkId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-products/{id}/sync":{"post":{"tags":["Investments"],"summary":"Endpoint: POST /investment-products/{id}/sync","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-products/{id}/lifecycle/transition":{"post":{"tags":["Investments"],"summary":"Endpoint: POST /investment-products/{id}/lifecycle/transition","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-products/{id}/lifecycle/logs":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-products/{id}/lifecycle/logs","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-products/{id}/lifecycle/eligibility":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-products/{id}/lifecycle/eligibility","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-products/{id}/versions":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-products/{id}/versions","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Investments"],"summary":"Endpoint: POST /investment-products/{id}/versions","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-products/{id}/versions/latest/eligibility":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-products/{id}/versions/latest/eligibility","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-products/versions/{versionId}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-products/versions/{versionId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"versionId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic versionId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-products/versions/{versionId}/transition":{"post":{"tags":["Investments"],"summary":"Endpoint: POST /investment-products/versions/{versionId}/transition","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"versionId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic versionId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-templates/":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /portfolio-templates/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Investments"],"summary":"Endpoint: POST /portfolio-templates/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-templates/{id}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /portfolio-templates/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"put":{"tags":["Investments"],"summary":"Endpoint: PUT /portfolio-templates/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"delete":{"tags":["Investments"],"summary":"Endpoint: DELETE /portfolio-templates/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-templates/product/{productId}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /portfolio-templates/product/{productId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"productId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic productId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-requests/":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-requests/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}},"post":{"tags":["Investments"],"summary":"Endpoint: POST /investment-requests/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-requests/{id}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-requests/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-requests/user/{userId}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-requests/user/{userId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic userId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-desk/":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-desk/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-desk/{id}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-desk/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-desk/{id}/execute":{"post":{"tags":["Investments"],"summary":"Endpoint: POST /investment-desk/{id}/execute","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-desk/{id}/cancel":{"post":{"tags":["Investments"],"summary":"Endpoint: POST /investment-desk/{id}/cancel","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-settlement/user/{userId}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-settlement/user/{userId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic userId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-settlement/user/{userId}/product/{productId}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-settlement/user/{userId}/product/{productId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic userId identifier"},{"name":"productId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic productId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-settlement/certificates/{id}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-settlement/certificates/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-settlement/certificates/customer/{customerId}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-settlement/certificates/customer/{customerId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"customerId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic customerId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/investment-settlement/certificates/request/{requestId}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /investment-settlement/certificates/request/{requestId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"requestId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic requestId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/customer-portfolios/":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /customer-portfolios/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/customer-portfolios/holdings/{holdingId}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /customer-portfolios/holdings/{holdingId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"holdingId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic holdingId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/nav-engine/":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /nav-engine/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/nav-engine/{id}":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /nav-engine/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/nav-engine/{id}/performance":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /nav-engine/{id}/performance","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/nav-engine/{id}/calculate":{"post":{"tags":["Investments"],"summary":"Endpoint: POST /nav-engine/{id}/calculate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/nav-engine/{id}/revalue":{"post":{"tags":["Investments"],"summary":"Endpoint: POST /nav-engine/{id}/revalue","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/workflow/initiate":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /workflow/initiate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/workflow/":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /workflow/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/workflow/{id}":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /workflow/{id}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/approval/queue/{id}/decision":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /approval/queue/{id}/decision","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/approval/queue/{id}/escalate":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /approval/queue/{id}/escalate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"id","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic id identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/approval/queue":{"get":{"tags":["Administration"],"summary":"Endpoint: GET /approval/queue","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/approval/sla-check":{"post":{"tags":["Administration"],"summary":"Endpoint: POST /approval/sla-check","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/risk/evaluate":{"post":{"tags":["General"],"summary":"Endpoint: POST /risk/evaluate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/risk/evaluate-transfer":{"post":{"tags":["General"],"summary":"Endpoint: POST /risk/evaluate-transfer","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/risk/simulate":{"post":{"tags":["General"],"summary":"Endpoint: POST /risk/simulate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/risk/history/{userId}":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /risk/history/{userId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"userId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic userId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-valuation/":{"get":{"tags":["General"],"summary":"Endpoint: GET /portfolio-valuation/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-valuation/{portfolioId}/nav-history":{"get":{"tags":["General"],"summary":"Endpoint: GET /portfolio-valuation/{portfolioId}/nav-history","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"portfolioId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic portfolioId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/asset-allocation/":{"get":{"tags":["General"],"summary":"Endpoint: GET /asset-allocation/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/performance-engine/":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /performance-engine/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wealth-analytics/":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /wealth-analytics/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/analytics/":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /analytics/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/wealth/":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /wealth/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-dashboard/":{"get":{"tags":["General"],"summary":"Endpoint: GET /portfolio-dashboard/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-dashboard/performance":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /portfolio-dashboard/performance","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-dashboard/valuation":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /portfolio-dashboard/valuation","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-dashboard/wealth-score":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /portfolio-dashboard/wealth-score","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-dashboard/analytics":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /portfolio-dashboard/analytics","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-dashboard/investments":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /portfolio-dashboard/investments","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-dashboard/crypto":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /portfolio-dashboard/crypto","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/dashboard/":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /dashboard/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/dashboard/performance":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /dashboard/performance","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/dashboard/valuation":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /dashboard/valuation","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/dashboard/wealth-score":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /dashboard/wealth-score","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/dashboard/analytics":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /dashboard/analytics","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/dashboard/investments":{"get":{"tags":["Investments"],"summary":"Endpoint: GET /dashboard/investments","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/dashboard/crypto":{"get":{"tags":["Crypto"],"summary":"Endpoint: GET /dashboard/crypto","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-history/":{"get":{"tags":["General"],"summary":"Endpoint: GET /portfolio-history/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-history/capture":{"post":{"tags":["General"],"summary":"Endpoint: POST /portfolio-history/capture","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/portfolio-history/valuations":{"get":{"tags":["Wealth"],"summary":"Endpoint: GET /portfolio-history/valuations","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/reports/compile":{"post":{"tags":["Reports"],"summary":"Endpoint: POST /reports/compile","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/reports/":{"get":{"tags":["Reports"],"summary":"Endpoint: GET /reports/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/reports/{reportId}":{"get":{"tags":["Reports"],"summary":"Endpoint: GET /reports/{reportId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"reportId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic reportId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/statements/generate":{"post":{"tags":["Statements"],"summary":"Endpoint: POST /statements/generate","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/statements/":{"get":{"tags":["Statements"],"summary":"Endpoint: GET /statements/","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}},"/statements/{statementId}":{"get":{"tags":["Statements"],"summary":"Endpoint: GET /statements/{statementId}","description":"Dynamically registered route from the active Express Routing Registry. Synchronized via TruLink dynamic docs inspector.","security":[{"BearerAuth":[]}],"parameters":[{"name":"statementId","in":"path","required":true,"schema":{"type":"string"},"description":"Dynamic statementId identifier"}],"responses":{"200":{"description":"Successful Response (Synchronized)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StandardResponse"}}}},"400":{"description":"Invalid Request Parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"description":"Unauthorized Credentials Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"403":{"description":"Forbidden Administrative Access Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"500":{"description":"Internal System Server Error Exception","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}},"components":{"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"StandardResponse":{"type":"object","properties":{"success":{"type":"boolean","examples":[true]},"message":{"type":"string","examples":["Request completed successfully"]}}},"ErrorResponse":{"type":"object","properties":{"success":{"type":"boolean","examples":[false]},"error":{"type":"string","examples":["Unauthorized request"]},"details":{"type":"array","items":{"type":"string"},"examples":[["ValidationError: token is missing"]]}}},"Wallet":{"type":"object","properties":{"id":{"type":"string","format":"uuid","examples":["123e4567-e89b-12d3-a456-426614174000"]},"userId":{"type":"string","format":"uuid","examples":["00000000-0000-0000-0000-000000000001"]},"currency":{"type":"string","examples":["USD"]},"balance":{"type":"number","examples":[250000]},"heldBalance":{"type":"number","examples":[1500]},"status":{"type":"string","examples":["active"]},"type":{"type":"string","examples":["custodial"]}}}}}}