# Export Ledger Entries to CSV Export journal entries and lines to CSV format for GL integration. Format: Mirrors webhook event structure for consistency. Can be directly imported into QuickBooks, Xero, Sage Intacct, etc. Endpoint: GET /exports/ledgerEntries Version: 1.0.0 Security: OAuth2 ## Query parameters: - `entry_date_from` (string) Filter journal entries on or after this date - `entry_date_to` (string) Filter journal entries on or before this date - `source` (string) Filter by journal entry source Enum: "INVOICE", "PAYMENT", "REFUND", "ADJUSTMENT", "REMITTANCE" - `account_code` (string) Filter by specific account code Enum: "REVENUE", "AR", "CONTRA_REVENUE", "CLEARING", "BANK", "FEE_EXPENSE", "REFUND_EXPENSE" ## Response 401 fields (application/json): - `result` (object, required) - `result.status` (string, required) Response status (always ERROR for error responses) Enum: "ERROR" - `error` (object, required) - `error.responseCode` (string, required) Response code (numeric or contains numbers, e.g., "404", "409", "500", "ERR001") Example: "404" - `error.responseMessage` (array, required) Array of error message strings for multiple error details Example: ["Charge not found","The requested charge ID does not exist in the system"]