# Gets a listing of invoices of a store on a given date Endpoint: GET /accounting/{storeId}/{date}/invoices Version: v3.0: 3.26.2.2 Security: Auth API User Token ## Path parameters: - `storeId` (string, required) Id of the Yellow Dog Store that is being fetched. The Store ID can be found from the Get All Stores Endpoint as the id Property of the Store Model. - `date` (string, required) Date String in the local time of the store (YYYY-MM-DD) is recommended Example: "2020-05-24" ## Query parameters: - `nonPrepaidOnly` (boolean) set to only respond with non-prepaid invoices - `includeReceipts` (boolean) includeReceipts adds the variance between invoice total and receipt total, otherwise returns the invoice total in the debit field ## Response 200 fields (application/json): - `id` (string) - `docNumber` (string,null) - `date` (string) - `paid` (boolean) - `prepaid` (boolean) - `paymentDue` (string,null) - `billed` (string,null) When working with v376 and earlier versions of YDInv.exe, this 'billed' property is mapped to the 'Billed Date' field of the invoice UI. When working with v377 or later versions of YDInv.exe, this 'billed' property is mapped to the 'Billed Date' field of the invoice UI. - `committed` (string) - `created` (string) - `lastUpdated` (string) - `reference` (string,null) - `description` (string,null) - `instructions` (string,null) - `notes` (string,null) - `totalAmount` (number) - `currencyCode` (string,null) - `committedByUser` (object) - `committedByUser.employeeNumber` (string,null) - `committedByUser.firstName` (string,null) - `committedByUser.middleName` (string,null) - `committedByUser.lastName` (string,null) - `createdByUser` (object) - `vendor` (object) - `vendor.code` (string,null) - `vendor.accountingId` (string,null) - `store` (object) - `lines` (array,null) - `lines.type` (string,null) - `lines.glAccount` (string,null) - `lines.credit` (number) - `lines.debit` (number) ## Response 400 fields (application/json): - `message` (string,null) - `errors` (array,null) - `errors.extensions` (string,null) ## Response 500 fields (application/json): - `message` (string,null) - `errors` (array,null) - `errors.extensions` (string,null) ## Response 403 fields ## Response 429 fields