# Get Invoices Retrieves a list of supplier invoices for the authenticated SupplierAdmin user. Endpoint: GET /SupplierInvoices Version: 1.0.0 Security: bearerAuth ## Query parameters: - `SupplierId` (string, required) The supplier ID associated with the authenticated user. - `Status` (string) Optional filter for invoice status. Example: "Pending" ## Response 200 fields (application/json): - `id` (string) Example: "3a7b5c12-8e1a-4f9a-b2a1-4d9b65d8e9af" - `invoiceNumber` (string) Example: "INV-001" - `status` (string) Example: "Pending" - `amount` (number) Example: 12500.75 - `createdDate` (string) Example: "2025-10-20T09:32:00Z" ## Response 401 fields (application/json): - `message` (string) Example: "You do not have appropriate access to this supplier."