# Get Accounting Projects This endpoint retrieves a paginated list of accounting projects. It allows users to manage and access project details efficiently, supporting financial tracking and project organization. A finance manager can use this endpoint to retrieve a list of accounting projects for review, ensuring all projects are tracked and managed effectively. Endpoint: GET /api/external/accounting-projects Version: 1.5.0 Security: API_AUTHENTICATION ## Query parameters: - `limit` (integer) Maximum number of records to return. Example: 20 - `offset` (integer) Number of records to skip before starting to return results. Example: 6 ## Response 200 fields (application/json): - `data` (array) - `data.id` (integer) Identifier of the project (FL3XX) Example: 112233 - `data.externalReference` (string) External Identifier of the project Example: "PRO1" - `data.name` (string) Project label/name Example: "Project 1" - `data.isActive` (boolean) Indicates whether the project is active and usable within FL3XX - `pagination` (object) Pagination details - `pagination.offset` (integer) Number of records skipped - `pagination.limit` (integer) Maximum number of records returned Example: 10 - `pagination.totalItems` (integer) Total number of items available Example: 3 - `pagination.sortItems` (array) List of fields used for sorting Example: [] - `pagination.filters` (array) - `pagination.filters.field` (string) Field name to filter by Example: "expenseDate" - `pagination.filters.operator` (string) Filter operator Example: "BTW" - `pagination.filters.value` (string) Filter value Example: "2024-08-28/2025-02-24"