# Retrieve list of all invoices for specified booking Retrieve a comprehensive list of all invoices associated with a specific booking within the Property Management System (PMS). This endpoint provides detailed financial information related to the booking, including all charges, payments, and adjustments. It ensures that all financial transactions linked to the booking are accessible, facilitating efficient financial management and tracking. Endpoint: GET /api/v3/bookings/{id}/salesInvoices Version: 3.0.4 Security: OAuth2 ## Path parameters: - `id` (integer, required) ID of the booking ## Response 200 fields (application/json): - `content` (array) - `content.id` (integer) The id of the sales invoice - `content.organisationSettingsId` (integer) The organisation settings id of the invoice - `content.dueDate` (string) The due date of the invoice - `content.invoiceDate` (string) The date of the invoice - `content.externalId` (string) The external id of the invoice - `content.status` (string) The status of the invoice - `content.net` (number) The net value of the invoice - `content.tax` (number) The tax value of the invoice - `content.invoiceNumber` (integer) The invoice number of the sales invoice - `content.exportStatus` (string) The status of the invoice export - `content.financeAccount` (object) The projected finance account - `content.financeAccount.id` (integer) The unique identifier of the account - `content.financeAccount.company` (object) The company of the account - `content.financeAccount.company.id` (integer) Unique identifier of the company - `content.financeAccount.company.companyName` (string) Name of the company - `content.financeAccount.accountCode` (string) The code of the account - `content.financeAccount.contact` (object) The name of the account - `content.financeAccount.contact.id` (integer) Unique identifier of the contact - `content.financeAccount.contact.firstName` (string) First name of the contact - `content.financeAccount.contact.lastName` (string) Last name of the contact - `content.financeAccount.contact.telephoneNumber` (string) Telephone number of the contact - `content.financeAccount.contact.emailAddress` (string) Email address of the contact - `content.exportedDate` (string) The exported date of the invoice - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)