# Get A Paged Orders List Retrieves a paginated list of orders with optional filters for date, status, customer, and more. Endpoint: GET /Orders/paged Version: 1.0.0 Security: bearerAuth ## Query parameters: - `Page` (integer) Page number - `PageSize` (integer) Number of items per page - `CustomerId` (string) Single customer ID - `CustomerIds` (array) List of customer IDs - `DateStart` (string) Start date for order filtering - `DateEnd` (string) End date for order filtering - `DriverIds` (array) Filter by one or more driver IDs - `InProgress` (boolean) Filter by in-progress status - `ProductIds` (array) Filter by product IDs - `Status` (integer) Filter by single status code Enum: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18 - `Statuses` (array) Filter by multiple status codes Enum: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18 - `SubContractIds` (array) Filter by subcontract IDs - `SupplierDepotIds` (array) Filter by supplier depot IDs - `SupplierId` (string) Filter by supplier ID - `VehicleIds` (array) Filter by vehicle IDs - `Text` (string) Free-text search ## Response 200 fields (application/json): - `data` (array) - `total` (integer) Total number of matching records