# 🔍 List invoices with filtering List invoices with time-based filtering options. This endpoint allows you to query invoices using various time-based filters to find invoices that match your criteria. Args: updated_after: ISO timestamp to get invoices updated after this time updated_before: ISO timestamp to get invoices updated before this time created_after: ISO timestamp to get invoices created after this time created_before: ISO timestamp to get invoices created before this time limit: Maximum number of invoices to return (default: 50, max: 100) offset: Number of invoices to skip for pagination (default: 0) Returns: List of invoices with metadata including timestamps and status Endpoint: GET /invoicing/invoices Version: 1.0.0 ## Query parameters: - `updated_after` (any) - `updated_before` (any) - `created_after` (any) - `created_before` (any) - `limit` (integer) - `offset` (integer) ## Header parameters: - `X-PDP-Client-Id` (string, required) ID of the PDP Client for which the operation is performed ## Response 401 fields (application/json): - `error` (string, required) - `code` (integer, required) - `trace_id` (string, required) ## Response 422 fields (application/json): - `detail` (array) - `detail.loc` (array, required) - `detail.msg` (string, required) - `detail.type` (string, required) ## Response 400 fields