business_central 0.9.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (152) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +37 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE +373 -0
  5. data/README.md +67 -0
  6. data/Rakefile +41 -0
  7. data/azure-pipelines.yml +30 -0
  8. data/business_central.gemspec +31 -0
  9. data/lib/business_central/account.rb +9 -0
  10. data/lib/business_central/aged_accounts_payable.rb +10 -0
  11. data/lib/business_central/aged_accounts_receivable.rb +10 -0
  12. data/lib/business_central/api_methods.rb +220 -0
  13. data/lib/business_central/balance_sheet.rb +10 -0
  14. data/lib/business_central/base.rb +56 -0
  15. data/lib/business_central/cash_flow_statement.rb +10 -0
  16. data/lib/business_central/client.rb +128 -0
  17. data/lib/business_central/company.rb +9 -0
  18. data/lib/business_central/company_information.rb +10 -0
  19. data/lib/business_central/countries_region.rb +9 -0
  20. data/lib/business_central/currency.rb +9 -0
  21. data/lib/business_central/customer.rb +9 -0
  22. data/lib/business_central/customer_financial_details.rb +10 -0
  23. data/lib/business_central/customer_payment.rb +14 -0
  24. data/lib/business_central/customer_payments_journal.rb +10 -0
  25. data/lib/business_central/customer_sales.rb +10 -0
  26. data/lib/business_central/dimension.rb +10 -0
  27. data/lib/business_central/dimension_line.rb +14 -0
  28. data/lib/business_central/employee.rb +10 -0
  29. data/lib/business_central/general_ledger_entry.rb +10 -0
  30. data/lib/business_central/income_statement.rb +10 -0
  31. data/lib/business_central/irs_1099_code.rb +10 -0
  32. data/lib/business_central/item.rb +10 -0
  33. data/lib/business_central/item_category.rb +10 -0
  34. data/lib/business_central/journal.rb +10 -0
  35. data/lib/business_central/journal_line.rb +14 -0
  36. data/lib/business_central/payment_method.rb +10 -0
  37. data/lib/business_central/payment_term.rb +10 -0
  38. data/lib/business_central/picture.rb +10 -0
  39. data/lib/business_central/purchase_invoice.rb +10 -0
  40. data/lib/business_central/purchase_invoice_line.rb +43 -0
  41. data/lib/business_central/request_builder.rb +60 -0
  42. data/lib/business_central/response/response_handler.rb +57 -0
  43. data/lib/business_central/retained_earnings_statement.rb +9 -0
  44. data/lib/business_central/sales_credit_memo.rb +10 -0
  45. data/lib/business_central/sales_credit_memo_line.rb +14 -0
  46. data/lib/business_central/sales_invoice.rb +10 -0
  47. data/lib/business_central/sales_invoice_line.rb +25 -0
  48. data/lib/business_central/sales_order.rb +9 -0
  49. data/lib/business_central/sales_order_line.rb +14 -0
  50. data/lib/business_central/sales_quote.rb +10 -0
  51. data/lib/business_central/sales_quote_line.rb +14 -0
  52. data/lib/business_central/shipment_method.rb +10 -0
  53. data/lib/business_central/subscription.rb +63 -0
  54. data/lib/business_central/tax_area.rb +10 -0
  55. data/lib/business_central/tax_group.rb +10 -0
  56. data/lib/business_central/trial_balance.rb +10 -0
  57. data/lib/business_central/unit_of_measure.rb +10 -0
  58. data/lib/business_central/url_builder.rb +33 -0
  59. data/lib/business_central/vendor.rb +10 -0
  60. data/lib/business_central/vendor_purchase.rb +10 -0
  61. data/lib/business_central/version.rb +3 -0
  62. data/lib/business_central.rb +67 -0
  63. data/test/business_central/account_test.rb +26 -0
  64. data/test/business_central/aged_accounts_payable_test.rb +8 -0
  65. data/test/business_central/aged_accounts_receivable_test.rb +8 -0
  66. data/test/business_central/base_test.rb +28 -0
  67. data/test/business_central/company_information_test.rb +8 -0
  68. data/test/business_central/company_test.rb +27 -0
  69. data/test/business_central/countries_region_test.rb +69 -0
  70. data/test/business_central/currency_test.rb +8 -0
  71. data/test/business_central/customer_financial_details_test.rb +20 -0
  72. data/test/business_central/customer_payment_test.rb +8 -0
  73. data/test/business_central/customer_payments_journal_test.rb +8 -0
  74. data/test/business_central/customer_sales_test.rb +8 -0
  75. data/test/business_central/customer_test.rb +138 -0
  76. data/test/business_central/dimension_line_test.rb +8 -0
  77. data/test/business_central/dimension_test.rb +8 -0
  78. data/test/business_central/employee_test.rb +8 -0
  79. data/test/business_central/general_ledger_entry_test.rb +8 -0
  80. data/test/business_central/income_statement_test.rb +8 -0
  81. data/test/business_central/irs_1099_code_test.rb +8 -0
  82. data/test/business_central/item_category_test.rb +8 -0
  83. data/test/business_central/item_test.rb +8 -0
  84. data/test/business_central/journal_line_test.rb +8 -0
  85. data/test/business_central/journal_test.rb +8 -0
  86. data/test/business_central/payment_method_test.rb +8 -0
  87. data/test/business_central/payment_term_test.rb +27 -0
  88. data/test/business_central/picture_test.rb +8 -0
  89. data/test/business_central/purchase_invoice_line_test.rb +33 -0
  90. data/test/business_central/purchase_invoice_test.rb +8 -0
  91. data/test/business_central/request_builder_test.rb +43 -0
  92. data/test/business_central/response/response_handler_test.rb +58 -0
  93. data/test/business_central/sales_credit_memo_line_test.rb +8 -0
  94. data/test/business_central/sales_credit_memo_test.rb +8 -0
  95. data/test/business_central/sales_invoice_line_test.rb +58 -0
  96. data/test/business_central/sales_invoice_test.rb +40 -0
  97. data/test/business_central/sales_order_line_test.rb +8 -0
  98. data/test/business_central/sales_order_test.rb +32 -0
  99. data/test/business_central/sales_quote_line_test.rb +8 -0
  100. data/test/business_central/sales_quote_test.rb +8 -0
  101. data/test/business_central/shipment_method_test.rb +19 -0
  102. data/test/business_central/subscription_test.rb +0 -0
  103. data/test/business_central/tax_area_test.rb +19 -0
  104. data/test/business_central/tax_group_test.rb +19 -0
  105. data/test/business_central/trial_balance_test.rb +8 -0
  106. data/test/business_central/unit_of_measure_test.rb +19 -0
  107. data/test/business_central/url_builder_test.rb +19 -0
  108. data/test/business_central/vendor_purchase_test.rb +8 -0
  109. data/test/business_central/vendor_test.rb +8 -0
  110. data/test/client_test.rb +72 -0
  111. data/test/fixtures/filter_customers_200.json +1 -0
  112. data/test/fixtures/get_account_200.json +1 -0
  113. data/test/fixtures/get_accounts_200.json +1 -0
  114. data/test/fixtures/get_companies_200.json +1 -0
  115. data/test/fixtures/get_company_200.json +1 -0
  116. data/test/fixtures/get_countriesRegion_200.json +1 -0
  117. data/test/fixtures/get_countriesRegions_200.json +1 -0
  118. data/test/fixtures/get_currencies_200.json +1 -0
  119. data/test/fixtures/get_currency_200.json +1 -0
  120. data/test/fixtures/get_customer_200.json +1 -0
  121. data/test/fixtures/get_customer_expanded_200.json +1 -0
  122. data/test/fixtures/get_customer_financial_details_200.json +1 -0
  123. data/test/fixtures/get_customers_200.json +1 -0
  124. data/test/fixtures/get_paymentMethod_200.json +1 -0
  125. data/test/fixtures/get_paymentMethods_200.json +1 -0
  126. data/test/fixtures/get_paymentTerm_200.json +1 -0
  127. data/test/fixtures/get_paymentTerms_200.json +1 -0
  128. data/test/fixtures/get_purchaseInvoiceLine_200.json +1 -0
  129. data/test/fixtures/get_purchaseInvoiceLines_200.json +1 -0
  130. data/test/fixtures/get_purchaseInvoice_200.json +1 -0
  131. data/test/fixtures/get_purchase_invoices_200.json +1 -0
  132. data/test/fixtures/get_salesInvoiceLine_200.json +1 -0
  133. data/test/fixtures/get_salesInvoiceLines_200.json +1 -0
  134. data/test/fixtures/get_salesInvoiceLines_single_200.json +1 -0
  135. data/test/fixtures/get_salesInvoice_200.json +1 -0
  136. data/test/fixtures/get_salesInvoices_200.json +1 -0
  137. data/test/fixtures/get_salesOrder_200.json +1 -0
  138. data/test/fixtures/get_salesOrders_200.json +1 -0
  139. data/test/fixtures/get_shipmentMethods_200.json +1 -0
  140. data/test/fixtures/get_taxAreas_200.json +1 -0
  141. data/test/fixtures/get_taxGroups_200.json +1 -0
  142. data/test/fixtures/get_unitsOfMeasure_200.json +1 -0
  143. data/test/fixtures/patch_countriesRegion_200.json +1 -0
  144. data/test/fixtures/patch_customer_200.json +1 -0
  145. data/test/fixtures/post_countriesRegion_200.json +1 -0
  146. data/test/fixtures/post_customer_200.json +1 -0
  147. data/test/fixtures/post_customer_409.json +1 -0
  148. data/test/fixtures/post_salesInvoiceLine_200.json +1 -0
  149. data/test/fixtures/post_salesInvoice_200.json +1 -0
  150. data/test/fixtures/post_subscription_200.json +1 -0
  151. data/test/test_helper.rb +86 -0
  152. metadata +408 -0
@@ -0,0 +1 @@
1
+ {"@odata.context":"https://wiise.api.bc.dynamics.com/v1.0/cronus.com.au/api/v1.0/$metadata#companies(93b4dabd-da6b-416c-8f92-6c98a0e4d523)/salesInvoices","value":[{"@odata.etag":"W/\"JzQ0O0c3RkxCNzhKK3FhYjI3WUdFSTVMSGdNNjVSQ1VzTUxXZWZ4RU9leHI4dXc9MTswMDsn\"","id":"91932eff-8f50-489c-9b15-00556ea92ca5","number":"103223","externalDocumentNumber":"","invoiceDate":"2018-02-18","dueDate":"2018-02-18","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:40.853Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0OzFRaFhYM1g1d282YkRuZW4wTnBNTWhMT0hIYTh6ZnRaRGV4Y3ZaRWUrNWs9MTswMDsn\"","id":"466dd928-b55a-4fb0-8f28-00bc95135b52","number":"103246","externalDocumentNumber":"","invoiceDate":"2018-04-15","dueDate":"2018-04-15","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":312,"totalTaxAmount":46.8,"totalAmountIncludingTax":358.8,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:44.43Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O2NhUzQxU2ZwSjVOMThtMHN3bkJXYjdFc2FqMGIzdmh5WWVXcUNWVWlhWHM9MTswMDsn\"","id":"40428f68-4209-4e0f-89f3-0191bdc14c73","number":"103307","externalDocumentNumber":"","invoiceDate":"2018-08-24","dueDate":"2018-08-24","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":8355,"totalTaxAmount":0,"totalAmountIncludingTax":8355,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:53.967Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0OzhwNUNHQXBRU0NDb0NFeEx0MFM4SG9Ucnlrd0ZnRE82S1RZRUJBM3JWTVU9MTswMDsn\"","id":"3602add0-f52c-4b4f-84d3-0288d0ef6c5a","number":"103283","externalDocumentNumber":"","invoiceDate":"2018-06-30","dueDate":"2018-06-30","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:50.413Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O1VGZTg0Yk5qVXdEa3BVV0IrZElJTm9iWWtVWmJmMnhqRzZPb3lZYUVxQkE9MTswMDsn\"","id":"60574abd-e7e8-4a40-872c-03391b8b6bf3","number":"103230","externalDocumentNumber":"","invoiceDate":"2018-02-28","dueDate":"2018-02-28","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3965,"totalTaxAmount":0,"totalAmountIncludingTax":3965,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:42.07Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O0I4aWFtUTljNTFCOXc3aWlqbnlRMW5YZ3pNWENSNzRTWjMyUDZaeGFJTWc9MTswMDsn\"","id":"00a10efd-8fda-488f-b91a-05451eda9158","number":"103373","externalDocumentNumber":"","invoiceDate":"2019-01-24","dueDate":"2019-01-24","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":7635,"totalTaxAmount":0,"totalAmountIncludingTax":7635,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:04.473Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O1Nqa05nWldac3RRdXdNL3MwWHc5dm9lc1plZmJOOEpXL2dBblA2RVpzdU09MTswMDsn\"","id":"a37f4e46-0d1c-4acf-8850-0b3443c4057d","number":"103358","externalDocumentNumber":"","invoiceDate":"2018-12-24","dueDate":"2018-12-24","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3385,"totalTaxAmount":0,"totalAmountIncludingTax":3385,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:02.14Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O1dqYkh4ckp5Y05ORHl4MHNCb3dEN2pjVXdFWHZJTG9yMnREZTUzcGtQTm89MTswMDsn\"","id":"51903258-7441-492f-a8b6-0ccbff981419","number":"103348","externalDocumentNumber":"","invoiceDate":"2018-11-26","dueDate":"2018-11-26","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5435,"totalTaxAmount":0,"totalAmountIncludingTax":5435,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:00.677Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0Oy92Sk8zT2pjeDNyOTkxWUduRE1HTWVDR0VRMUkyK2dwWHNWa3pHT2Z2aXc9MTswMDsn\"","id":"75b877d2-47f0-4e59-a0a1-0e7c75ccdeb1","number":"103245","externalDocumentNumber":"","invoiceDate":"2018-04-01","dueDate":"2018-04-01","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3250,"totalTaxAmount":0,"totalAmountIncludingTax":3250,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:44.3Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0Oy9rL3NhTFY5d2V2WmpqdUdMVkhNb2U5WWM2K1JScDNYeGtncmF4SVY1UmM9MTswMDsn\"","id":"a8d79807-f98e-4ec3-a65a-0eb5f2c3f5a0","number":"103369","externalDocumentNumber":"","invoiceDate":"2019-01-21","dueDate":"2019-01-21","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4730,"totalTaxAmount":709.5,"totalAmountIncludingTax":5439.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:03.783Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0OzlPdFlDdWdjTlVKL05MWVoxNVhYeWhWY2tybDVkRVJzYXBVY3lhYTYrMWc9MTswMDsn\"","id":"4f418154-43da-4f95-8b44-105f2e26b216","number":"103274","externalDocumentNumber":"","invoiceDate":"2018-06-18","dueDate":"2018-06-18","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":720,"totalTaxAmount":108,"totalAmountIncludingTax":828,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:48.813Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O2pMM2xxL0k1L2RLTnF5UFVpU1E0RUg5dkcvMXRKWXljeHhzeHdob0pEWTA9MTswMDsn\"","id":"733da36c-d60f-41e0-854f-117e1a4e7bb2","number":"103304","externalDocumentNumber":"","invoiceDate":"2018-08-21","dueDate":"2018-08-21","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":25293,"totalTaxAmount":3793.95,"totalAmountIncludingTax":29086.95,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:53.517Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O3R3c1dtUGhUcllWV01aWE1PM29jRGdYV0daK1JXY3BkZnVwTk85YXViMDg9MTswMDsn\"","id":"265a635f-914e-4c03-9e62-119603bb2476","number":"103383","externalDocumentNumber":"","invoiceDate":"2019-02-19","dueDate":"2019-02-19","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":31722,"totalTaxAmount":4758.3,"totalAmountIncludingTax":36480.3,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:06.05Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O3MvQWt0SEJLd1VWSmQyRzd2b3BvU1RlTHorVm5tRkwxRitacTlsb2JUWDg9MTswMDsn\"","id":"3bd4d8f0-6309-40fc-b19d-11b1c2fe6a1c","number":"103325","externalDocumentNumber":"","invoiceDate":"2018-10-17","dueDate":"2018-10-17","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1095,"totalTaxAmount":164.25,"totalAmountIncludingTax":1259.25,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:56.89Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O1dWWExjV2pnZXY5c1dza0F6NzhJamQvLzU3a0UzVE5BdmNBLzJ2eHVNak09MTswMDsn\"","id":"ab5a4d30-4110-42a2-ad29-123433e7a5ed","number":"103385","externalDocumentNumber":"","invoiceDate":"2019-02-22","dueDate":"2019-03-31","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":7635,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":7635,"totalTaxAmount":0,"totalAmountIncludingTax":7635,"status":"Open","lastModifiedDateTime":"2019-06-24T17:56:06.437Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O2xHSHBLcWNlOTBZbVNhYlc0TGlpUUVNRHVDQlMwNUU1cVNub3l3UU9TSFU9MTswMDsn\"","id":"35af2051-75ee-4499-acc3-134503ac34a4","number":"103367","externalDocumentNumber":"","invoiceDate":"2019-01-19","dueDate":"2019-01-19","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":720,"totalTaxAmount":108,"totalAmountIncludingTax":828,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:03.48Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O1J6VGJmOXpjRkM4TjdiNEhyVnRlNnpmdVZ6MnI4Wkdmd3ZQQ1VCT1kzYzQ9MTswMDsn\"","id":"0cacf7fb-684a-4a08-b953-13cd82de7154","number":"103270","externalDocumentNumber":"","invoiceDate":"2018-05-31","dueDate":"2018-05-31","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5135,"totalTaxAmount":770.25,"totalAmountIncludingTax":5905.25,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:48.267Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O2s4Mk1VRFpWdG1nZHMxUVV0cHo1MndFNndhVGFXckFQeU05NmlPYUhiU2M9MTswMDsn\"","id":"7b755f83-cca2-49aa-967e-18e7d6b7b4cc","number":"103228","externalDocumentNumber":"","invoiceDate":"2018-02-23","dueDate":"2018-02-23","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1825,"totalTaxAmount":273.75,"totalAmountIncludingTax":2098.75,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:41.703Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0OzRXVjRGTThaNzVzdVM3MjRDMW9lOW02a3VzeHVsVG01Q290bFFTWE5CSDQ9MTswMDsn\"","id":"1072aca6-ad98-41cb-8103-18ea50fdad25","number":"103292","externalDocumentNumber":"","invoiceDate":"2018-07-24","dueDate":"2018-07-24","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":832,"totalTaxAmount":0,"totalAmountIncludingTax":832,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:51.683Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O1MyV1NPcVFMRjgzRWRmeE9GRFFhYlRoeVZaamI1ejZMQmlUWHJrdUxpbjQ9MTswMDsn\"","id":"3b67ad1a-edae-4de9-853a-1ae469a917f1","number":"103340","externalDocumentNumber":"","invoiceDate":"2018-11-18","dueDate":"2018-11-18","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":720,"totalTaxAmount":108,"totalAmountIncludingTax":828,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:59.207Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O044YmgwcXZKUVZOY0ExcVY3TDYxR0pXeFpyMjl6WEtQTVg4Yjd6NWttaGM9MTswMDsn\"","id":"70061834-a527-45ec-bd06-1b54ef404f8e","number":"103359","externalDocumentNumber":"","invoiceDate":"2018-12-27","dueDate":"2018-12-27","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1225,"totalTaxAmount":183.75,"totalAmountIncludingTax":1408.75,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:02.287Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0OzhDYTg5N1N6V2RtamxXZ1hJTVBCVldVTllRTHlVY2wwTi9iU2ptQ2VFKzQ9MTswMDsn\"","id":"768693c8-70bf-4a3d-bbbc-1c18e182e5e6","number":"103288","externalDocumentNumber":"","invoiceDate":"2018-07-20","dueDate":"2018-07-20","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:51.037Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0OzROSWM1T1dweFJ2UEJsQ1k4MkRETkRsVzVjcUxWamtaMTU1Z0krWi9URVU9MTswMDsn\"","id":"3c62394f-e4bb-4215-9813-1c3a74a0bba9","number":"103332","externalDocumentNumber":"","invoiceDate":"2018-10-24","dueDate":"2018-10-24","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":728,"totalTaxAmount":0,"totalAmountIncludingTax":728,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:57.907Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0OytFL3RVRHBHRFUvcnVNMHFxeG9YWHhMNFNUNEJHbmduLzA3a1RGZjM3a1k9MTswMDsn\"","id":"7fedd771-af05-44b8-bf2e-1c9271b81ba3","number":"103203","externalDocumentNumber":"","invoiceDate":"2019-05-13","dueDate":"2019-06-30","customerPurchaseOrderReference":"OPEN","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":12250,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":12250,"totalTaxAmount":0,"totalAmountIncludingTax":12250,"status":"Draft","lastModifiedDateTime":"2019-06-28T03:22:49.22Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O2ZtSEVKd2lHdUtvdTh0OUo1UWdvU0pHWWVCaHJmUG1UcnRCM21kZ2UyaVU9MTswMDsn\"","id":"589013fe-7c39-4377-ad12-1e54f32c3dcd","number":"103265","externalDocumentNumber":"","invoiceDate":"2018-05-23","dueDate":"2018-05-23","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4920,"totalTaxAmount":738,"totalAmountIncludingTax":5658,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:47.42Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O0QybWtlbXZ1djJkREJrdmdvQmZCSDA4V1lTNGt1SGhDcmo2UHQvY202SUk9MTswMDsn\"","id":"de7b3183-e804-4922-b636-21b7000d0fc3","number":"103344","externalDocumentNumber":"","invoiceDate":"2018-11-22","dueDate":"2018-11-22","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":6420,"totalTaxAmount":0,"totalAmountIncludingTax":6420,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:59.973Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0OzdRNkZCeVdmZG42dUpWQjRXcGZuWjRUNkFmS0xoMG45VkFheDYrMU5FT289MTswMDsn\"","id":"7f06a3e0-0b29-4c1a-80aa-21bc340251ee","number":"103303","externalDocumentNumber":"","invoiceDate":"2018-08-21","dueDate":"2018-08-21","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4730,"totalTaxAmount":709.5,"totalAmountIncludingTax":5439.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:53.327Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O1FkUEdzOTJTT21HNGIvbGF1MXd3emJEVWVhbjg4cnZnNHdieW1LQWZhdTg9MTswMDsn\"","id":"2e487cf0-701c-4b55-94ef-2451ba378912","number":"103266","externalDocumentNumber":"","invoiceDate":"2018-05-24","dueDate":"2018-05-24","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":832,"totalTaxAmount":0,"totalAmountIncludingTax":832,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:47.543Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O2pqbVJZcVpWZU4yMDgzMXlLTXRISGs4WVZDTm9sRGZEUkFjcVgwRldHclU9MTswMDsn\"","id":"e30e85dd-cb78-4e73-a9ef-25d87363acc5","number":"103337","externalDocumentNumber":"","invoiceDate":"2018-11-01","dueDate":"2018-11-01","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":2525,"totalTaxAmount":0,"totalAmountIncludingTax":2525,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:58.827Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O1l3T1o3OFZoRGt3aGt5czg2a0xDcHY2MTRRWi9ycnhVclVhS1RPQjFpaWM9MTswMDsn\"","id":"8f73fb66-764b-46cd-9b0a-29cb73b8cde5","number":"103216","externalDocumentNumber":"","invoiceDate":"2018-01-26","dueDate":"2018-01-26","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:39.827Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0OzRUOHc2NmNGa3dpY1kvY200OCtHbHRvMytzajNMRkRPZWxaaXRNV3BhSm89MTswMDsn\"","id":"7f168d21-2525-40dd-ace5-2d156ea919ff","number":"103256","externalDocumentNumber":"","invoiceDate":"2018-04-26","dueDate":"2018-04-26","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":9415,"totalTaxAmount":0,"totalAmountIncludingTax":9415,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:46.177Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0Ozl0bjN2bWMrY1NXbXdNVi8vNWhvOVhvMmpmUmhPRS9ZN3UwWEcvTnlMMWc9MTswMDsn\"","id":"42f8c632-ed96-401a-a77c-2dbba856d7b8","number":"103372","externalDocumentNumber":"","invoiceDate":"2019-01-24","dueDate":"2019-01-24","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":832,"totalTaxAmount":0,"totalAmountIncludingTax":832,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:04.26Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0OzZBSUlXQ3pEVE5ka0FscWFBSXRib1pTKy9PVjErdVFHMmJVa1VwbnhONE09MTswMDsn\"","id":"4b38f8c2-607a-46d1-bd96-2e6025786619","number":"103294","externalDocumentNumber":"","invoiceDate":"2018-07-26","dueDate":"2018-07-26","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:52.02Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0OzJNYkhGL3RsOHRKbnBlMnpES0EvclJ6Y2MrYW0zNStHYjBGSXRCUUphRnM9MTswMDsn\"","id":"4f27160b-c8ff-41c0-b0d4-3058e4d3ca80","number":"103326","externalDocumentNumber":"","invoiceDate":"2018-10-18","dueDate":"2018-10-18","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":365,"totalTaxAmount":0,"totalAmountIncludingTax":365,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:57.017Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O3VSY1l6VkNqM0VBL2ZoSkx0VnRCVEN1SnBUY3VyU016M1ZQc0VTOW1Hckk9MTswMDsn\"","id":"b0cf3593-3313-4ae9-94ac-30f3e3b081b5","number":"103293","externalDocumentNumber":"","invoiceDate":"2018-07-24","dueDate":"2018-07-24","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":7275,"totalTaxAmount":0,"totalAmountIncludingTax":7275,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:51.873Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O2ozeGZVZCs4b0JCWlRvSWNoTHVLdkFBV2pLU1V0ZjkrMDJRVDJqUjQ3RW89MTswMDsn\"","id":"f6519211-acd1-4f39-a146-314bd5a0ff90","number":"103351","externalDocumentNumber":"","invoiceDate":"2018-12-17","dueDate":"2018-12-17","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":109.5,"totalAmountIncludingTax":839.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:01.11Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O3kvZUN4U1FEOG5lOHNEcTdYR0YvRlZXSVJaMUYyeW1PU3YzOHlBNHN0RWc9MTswMDsn\"","id":"1fa7de62-1347-412c-8b41-32099379ef85","number":"103397","externalDocumentNumber":"","invoiceDate":"2019-03-23","dueDate":"2019-03-23","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":8200,"totalTaxAmount":1230,"totalAmountIncludingTax":9430,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:08.323Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O01QV0FGZlF0S2IzMTYzS3NBT2FEWlBrY1VhRW1lZXBhQjBmTWFYQlRqSW89MTswMDsn\"","id":"48b78628-cce3-4dc5-81c3-32dd2b0d8b12","number":"103244","externalDocumentNumber":"","invoiceDate":"2018-03-31","dueDate":"2018-03-31","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5135,"totalTaxAmount":770.25,"totalAmountIncludingTax":5905.25,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:44.147Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0OytXNldQcmorN1dFSnpBdE5SdGRia3M4ckpMcmVNYktScHhPc29jUTJGY289MTswMDsn\"","id":"817c8e6b-6fc7-409e-98bd-3604343465bc","number":"103343","externalDocumentNumber":"","invoiceDate":"2018-11-22","dueDate":"2018-11-22","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4920,"totalTaxAmount":738,"totalAmountIncludingTax":5658,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:59.767Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O3lKMkhnY3FzS0laRVhYNXB6ZDNISVZOTXlLdS9SYTgzY3VXWEhiS3NFNGc9MTswMDsn\"","id":"050ddea7-e210-45cd-bea3-3706b61f6c18","number":"103206","externalDocumentNumber":"","invoiceDate":"2018-01-16","dueDate":"2018-01-16","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":312,"totalTaxAmount":46.8,"totalAmountIncludingTax":358.8,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:37.77Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O0plWGtSd28vblprMVdKL2JFVlY2RG5Hd2swYjJIVytiR2ZLUmhWcS8wbTA9MTswMDsn\"","id":"858b5ebf-658d-4712-b9d4-3c55826374ac","number":"103377","externalDocumentNumber":"","invoiceDate":"2019-02-01","dueDate":"2019-03-31","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":2165,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":2165,"totalTaxAmount":0,"totalAmountIncludingTax":2165,"status":"Open","lastModifiedDateTime":"2019-06-24T17:56:05.127Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O0k3QXprRnBTajVYMXFjdWRnOWdJaGpTK09qZGZMZmxUa3dnUFh1dWJmRlE9MTswMDsn\"","id":"b26e2193-ad99-47d2-9df8-3d6ee4bfd725","number":"103349","externalDocumentNumber":"","invoiceDate":"2018-11-30","dueDate":"2018-11-30","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":365,"totalTaxAmount":0,"totalAmountIncludingTax":365,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:00.817Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O20zY0hEcmlpTUo2VjVjZVFaNnAxNmZXYkJRQ0FWTVJhTnNrdzdaM2MxZWs9MTswMDsn\"","id":"3a24bc8d-e5bb-4ae2-9fc7-3e70ca259a05","number":"103269","externalDocumentNumber":"","invoiceDate":"2018-05-27","dueDate":"2018-05-27","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":27375,"totalTaxAmount":0,"totalAmountIncludingTax":27375,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:48.087Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O0dHbzl0U3RnR24wbU1uN3ZLREoveHAvaUJmYTdQTWdpMGpGNXNab2hpUjA9MTswMDsn\"","id":"6eb4bfa4-306f-49e4-9a0b-3f91c0c0d526","number":"103236","externalDocumentNumber":"","invoiceDate":"2018-03-20","dueDate":"2018-03-20","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:42.83Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O2hNeTROYVdqOWdXYkpQZHQ4SDAwT3JNaHhSOW1QOXg1NkF3MVRZSk54NTg9MTswMDsn\"","id":"1308010c-3173-465c-833e-43f042e3f014","number":"103220","externalDocumentNumber":"","invoiceDate":"2018-02-15","dueDate":"2018-02-15","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":312,"totalTaxAmount":46.8,"totalAmountIncludingTax":358.8,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:40.467Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O0VZbFAxSDQ0VitKNkVEVU12SnNLbi8vVEl4bnNoWGg3Q3BpUDJkaWZpdDA9MTswMDsn\"","id":"7fd829ce-31e0-4827-9bd4-457895b576ff","number":"103287","externalDocumentNumber":"","invoiceDate":"2018-07-19","dueDate":"2018-07-19","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":720,"totalTaxAmount":108,"totalAmountIncludingTax":828,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:50.917Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0OzRjd2RtZCtxWnloQlYzcGx0cTdSeTZ3dlNPODVuandhTVYwOS9EWWhTNVU9MTswMDsn\"","id":"b89db689-05a0-476d-bd7a-459f70b1e0fe","number":"103250","externalDocumentNumber":"","invoiceDate":"2018-04-20","dueDate":"2018-04-20","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5455,"totalTaxAmount":818.25,"totalAmountIncludingTax":6273.25,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:45.063Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O1puUmpDV29Fa1JES3VRVStaVHRzWE9wSmZxY2hQRS9jQ25WNVp6ZWR6RE09MTswMDsn\"","id":"0881062c-c958-4034-99cb-47a89f6f9529","number":"103302","externalDocumentNumber":"","invoiceDate":"2018-08-20","dueDate":"2018-08-20","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:53.157Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O0t6R01tZGVBQkRFZzdGU1N4U0x4K25acTdPRmQzRm1iMFhoNE5hNWpxZVU9MTswMDsn\"","id":"51c97a0e-eee6-4f5b-9dd3-486e8223a212","number":"103217","externalDocumentNumber":"","invoiceDate":"2018-01-27","dueDate":"2018-01-27","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":20221,"totalTaxAmount":0,"totalAmountIncludingTax":20221,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:40.02Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O2xXdERoWm0zSnk1bFFZQk5PVXpHRlNPYXVXWVByTUNEdjZDalM5ZWZvRVE9MTswMDsn\"","id":"f2877533-1b5f-4050-92d3-487cc9e79243","number":"103338","externalDocumentNumber":"","invoiceDate":"2018-11-15","dueDate":"2018-11-15","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":208,"totalTaxAmount":31.2,"totalAmountIncludingTax":239.2,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:58.963Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O001YVJOL2dTeHBQNEx5ME5UaElBQ045cWpXSG5BTGJBeTVWL1FlNzFjZ3M9MTswMDsn\"","id":"7576a6e4-34fe-44f8-8d78-48bc8570b14d","number":"103259","externalDocumentNumber":"","invoiceDate":"2018-05-17","dueDate":"2018-05-17","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:46.553Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O0Mrek9ueFd1aWFJQnhEaGRLUmJlSjZwSzZqNlcrL1E1cEUrSEJqbUt6SGc9MTswMDsn\"","id":"028d4523-61aa-466c-a277-4a5a1d7d17c2","number":"103267","externalDocumentNumber":"","invoiceDate":"2018-05-24","dueDate":"2018-05-24","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":9220,"totalTaxAmount":0,"totalAmountIncludingTax":9220,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:47.74Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O1EzanFWaDhGemdSVWpyTTU1WHVsNUl2ZGJTcGcrMVNrdGFGbGNZb2wxd0E9MTswMDsn\"","id":"2c1be902-45bf-4a66-b23f-4b772cc069e4","number":"103360","externalDocumentNumber":"","invoiceDate":"2018-12-27","dueDate":"2018-12-27","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":10034,"totalTaxAmount":0,"totalAmountIncludingTax":10034,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:02.507Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O2xNTXc0MUwwZGlaY0lMb1FKZDY3K0EzUmd4c1AxN2pCNUpua2tydmkydG89MTswMDsn\"","id":"7da66c32-21f8-450a-a4e4-4c2789e234de","number":"103226","externalDocumentNumber":"","invoiceDate":"2018-02-20","dueDate":"2018-02-20","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":7280,"totalTaxAmount":1092,"totalAmountIncludingTax":8372,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:41.363Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O1ZFcE9lMEJ0RFd0UTR4MUN3VnpMOG1VWjRxUXpTTWNhQjRZTmQ2TUl1YVU9MTswMDsn\"","id":"26c16589-bf49-4be0-be77-4de80034afdd","number":"103229","externalDocumentNumber":"","invoiceDate":"2018-02-23","dueDate":"2018-02-23","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":20761,"totalTaxAmount":0,"totalAmountIncludingTax":20761,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:41.89Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O2l6M05VeWFjQ3k4bGM3elJXOEdCcHFYejNBczI5bEJadDg5Vy9yWk53V1U9MTswMDsn\"","id":"a95eef65-051b-495e-8063-5201800c488c","number":"103363","externalDocumentNumber":"","invoiceDate":"2019-01-01","dueDate":"2019-01-01","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":365,"totalTaxAmount":0,"totalAmountIncludingTax":365,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:02.96Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O1hVU3Z6cXFRSVhTNExtallyM2hqbExiSmE5YnN5TkRPd3FiWFZXZmJMMVE9MTswMDsn\"","id":"76461b81-9453-4157-8c3e-529f461dbead","number":"103284","externalDocumentNumber":"","invoiceDate":"2018-07-16","dueDate":"2018-07-16","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":312,"totalTaxAmount":46.8,"totalAmountIncludingTax":358.8,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:50.537Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O0VrcUhOdU43QVZBUklhV2hYZGxTaEoyVUhhTldhazhBUmd2TythMFhrZE09MTswMDsn\"","id":"15f1a528-8c1c-4407-8fca-530bfe1c8b58","number":"103260","externalDocumentNumber":"","invoiceDate":"2018-05-18","dueDate":"2018-05-18","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:46.673Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O0NsOWJPU3lXaDVOUUxLTDJFNnpjTHlIMnJZWk56VlhjbkhXQldOMHBkL3c9MTswMDsn\"","id":"c8532233-8217-412c-ab70-53467c659ed1","number":"103329","externalDocumentNumber":"","invoiceDate":"2018-10-21","dueDate":"2018-10-21","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3275,"totalTaxAmount":491.25,"totalAmountIncludingTax":3766.25,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:57.44Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0Ozh2UUhmemd1S0JUK25lcW1XYndTTVcxMWlHZWh5b0dXSXNaU2JUcFdKS2c9MTswMDsn\"","id":"32e67e2b-47b4-4b40-8f16-53ac188e6529","number":"103318","externalDocumentNumber":"","invoiceDate":"2018-09-22","dueDate":"2018-09-22","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":6055,"totalTaxAmount":0,"totalAmountIncludingTax":6055,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:55.797Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O3hwMlNPdHNockdaYlZwMDQvZElEdldhT0ZpVDdDRXFDUFlLT3ZjekthSmc9MTswMDsn\"","id":"f7d7eca3-6fac-4347-af70-542437ec97bf","number":"103240","externalDocumentNumber":"","invoiceDate":"2018-03-24","dueDate":"2018-03-24","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1040,"totalTaxAmount":0,"totalAmountIncludingTax":1040,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:43.457Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O1E0cCtqbklTZ0s4KzZ0WTU4V1ZCSWxhbUM0NGhKQ2pPdll4bkYxdnFmNms9MTswMDsn\"","id":"ef1959fa-22cf-4c59-a190-54fc8b5b6ba2","number":"103225","externalDocumentNumber":"","invoiceDate":"2018-02-19","dueDate":"2018-02-19","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":24543,"totalTaxAmount":3681.45,"totalAmountIncludingTax":28224.45,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:41.203Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O3VLenlobU00bmxYcHlkY3NFMngxWkVyVXY2dVVZR3AxWnlvV3lmS3BTa2c9MTswMDsn\"","id":"3ef8f505-dafc-4a88-9926-55318b951ddc","number":"103315","externalDocumentNumber":"","invoiceDate":"2018-09-19","dueDate":"2018-09-19","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":21852,"totalTaxAmount":3277.8,"totalAmountIncludingTax":25129.8,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:55.203Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O1JvZjdYZ1BOb05iL2Z6dG1rNE83TXgxZE9FNGtRbG5QeDh0L2tjbE04YW89MTswMDsn\"","id":"0c3d0df5-e353-41e3-be9c-55ac4a292f26","number":"103379","externalDocumentNumber":"","invoiceDate":"2019-02-15","dueDate":"2019-02-15","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:05.383Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O1Z1NU1DRmNZTnlKM1c5cGpGdTlpSHR0akpjZThDZjFRdXQzNWtLVEFKOW89MTswMDsn\"","id":"821e8685-0977-46d4-9e9d-55ff6f893d47","number":"103241","externalDocumentNumber":"","invoiceDate":"2018-03-24","dueDate":"2018-03-24","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":9580,"totalTaxAmount":0,"totalAmountIncludingTax":9580,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:43.647Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O1I3L0l2Z1JRMmU0TDBybCtWMU54TUUycmlNdmJvWDBkV3dKb0JmeXdxbG89MTswMDsn\"","id":"3421f97b-6ed1-4b5f-a7c4-5753ea73eea7","number":"103322","externalDocumentNumber":"","invoiceDate":"2018-09-26","dueDate":"2018-09-26","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5435,"totalTaxAmount":0,"totalAmountIncludingTax":5435,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:56.5Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O0VocHN1QTR0cTAvOFRQRHV1SnlWTFhxUjhmWXBsNDdzQUxMV3NJbko4YUU9MTswMDsn\"","id":"9059ffe4-3601-46c9-9b4e-57f5190737ef","number":"103281","externalDocumentNumber":"","invoiceDate":"2018-06-26","dueDate":"2018-06-26","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3910,"totalTaxAmount":586.5,"totalAmountIncludingTax":4496.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:50.11Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O1REREIzMzMwZmhqMkwwdHE2MjJVL1Vla09CNjk5N0I3OVRjbDdUVWJ5R0k9MTswMDsn\"","id":"ac6b4acc-fa06-4076-8d8d-59cb7cdcaca2","number":"103249","externalDocumentNumber":"","invoiceDate":"2018-04-19","dueDate":"2018-04-19","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":37693,"totalTaxAmount":5653.95,"totalAmountIncludingTax":43346.95,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:44.87Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O2NKWEUrZ2ViOUc1aU9jTllHQTVXMDBoSk5qY0FEM0FIR2EvRkkwcWJ3NHc9MTswMDsn\"","id":"e5f3a784-5512-4369-8039-5bd85345873c","number":"103355","externalDocumentNumber":"","invoiceDate":"2018-12-21","dueDate":"2018-12-21","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5651,"totalTaxAmount":0,"totalAmountIncludingTax":5651,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:01.71Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O3ZwTXdVNG52R1lTRExUdklMbnpBc3lGbnhteXB0dmRTT2VXR0tIaFFvV0E9MTswMDsn\"","id":"7a2843c4-903c-42f5-a56d-5ef4a542a264","number":"103347","externalDocumentNumber":"","invoiceDate":"2018-11-26","dueDate":"2018-11-26","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3910,"totalTaxAmount":586.5,"totalAmountIncludingTax":4496.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:00.493Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O3RUbFZJdStWaGV6N05FVTZvWVg0MTl3WFZQOWdVSDluU3JEcWFndjN3ejg9MTswMDsn\"","id":"9944042c-8931-409a-bf22-5f6c591af5fe","number":"103353","externalDocumentNumber":"","invoiceDate":"2018-12-20","dueDate":"2018-12-20","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":6039,"totalTaxAmount":905.85,"totalAmountIncludingTax":6944.85,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:01.393Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O2FrN2x0Zmg3eklKcWhPaW9kUnViSU9DQTk4VWQ4Q0p2WG9kcFlMRVJ4WUk9MTswMDsn\"","id":"87389a53-591d-455c-98ed-600d1cde0601","number":"103213","externalDocumentNumber":"","invoiceDate":"2018-01-23","dueDate":"2018-01-23","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4920,"totalTaxAmount":738,"totalAmountIncludingTax":5658,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:39.363Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O3prZ21FamxXeTlVZDRQVWFFNjhMYlhnWnRacGlheGd4SHlwbEFhSlU1QWs9MTswMDsn\"","id":"9592071c-0bc0-4de6-9f97-6098829ccd73","number":"103271","externalDocumentNumber":"","invoiceDate":"2018-06-01","dueDate":"2018-06-01","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3250,"totalTaxAmount":0,"totalAmountIncludingTax":3250,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:48.427Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O0NpZzQ0RUlhU0F5SGpadHVWS0RFWDBHbXZBa3paOWdBRUxwM0RpbkpuR2s9MTswMDsn\"","id":"951b8b4b-8a7a-499d-bde7-60ed77b5cfa1","number":"103319","externalDocumentNumber":"","invoiceDate":"2018-09-23","dueDate":"2018-09-23","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":109.5,"totalAmountIncludingTax":839.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:55.96Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O3ZjcVFGcDFxZ2ZFN25YcjdFUk9GUlJRbldtQmJ2Y0UzZ05NaVpDdURteG89MTswMDsn\"","id":"2dfa33da-5e6b-46ae-8a1b-6153d7b66eb9","number":"103202","externalDocumentNumber":"","invoiceDate":"2019-04-05","dueDate":"2019-05-31","customerPurchaseOrderReference":"OPEN","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":4900,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4900,"totalTaxAmount":0,"totalAmountIncludingTax":4900,"status":"Draft","lastModifiedDateTime":"2019-06-28T03:22:49.497Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0Ozc0WTZUSk5KMVF1RFRtclBTNlQ4K2NjNVBVUys0S1JDNUtZMFZsWTVxMFU9MTswMDsn\"","id":"18bc6321-018a-4f44-b517-62f32d85138d","number":"103263","externalDocumentNumber":"","invoiceDate":"2018-05-21","dueDate":"2018-05-21","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4360,"totalTaxAmount":654,"totalAmountIncludingTax":5014,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:47.087Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O0FUWituSTBPWFpOYjNCVjk3b1JSN0poeUVGL24vcmNYTTgvaVJzWUo2Wnc9MTswMDsn\"","id":"807dbfcb-f1f9-43b4-bace-653a5ac60d01","number":"103278","externalDocumentNumber":"","invoiceDate":"2018-06-22","dueDate":"2018-06-22","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":8725,"totalTaxAmount":0,"totalAmountIncludingTax":8725,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:49.57Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O2lxcUlwR2pNdmovTEJucUYyV3hwSklMbnBLVzVYWHBBR1VKWnZJSG1pQlE9MTswMDsn\"","id":"d4e9153f-918e-447c-b13d-6757c410631a","number":"103199","externalDocumentNumber":"","invoiceDate":"2019-04-04","dueDate":"2019-05-31","customerPurchaseOrderReference":"OPEN","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":23346.15,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":20301,"totalTaxAmount":3045.15,"totalAmountIncludingTax":23346.15,"status":"Draft","lastModifiedDateTime":"2019-06-28T03:22:49.577Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O1VnZ0ZQbStMTjhpYVlzVVRReDYvSy9aR0gzWWQwUVpCdzRwYmhOTkcyTFk9MTswMDsn\"","id":"b1aa8ee1-aa4d-4175-8a11-6c0e94074659","number":"103403","externalDocumentNumber":"","invoiceDate":"2019-04-01","dueDate":"2019-05-31","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":3610,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3610,"totalTaxAmount":0,"totalAmountIncludingTax":3610,"status":"Open","lastModifiedDateTime":"2019-06-24T17:56:09.293Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O2VGK1NWaVBZajNreHdhbGVybytoZzY1RzdCN2dINllHb1NxTGROdHdGeWc9MTswMDsn\"","id":"042194d4-1fa1-4dd6-af5f-6d774cf98d7c","number":"103261","externalDocumentNumber":"","invoiceDate":"2018-05-19","dueDate":"2018-05-19","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":720,"totalTaxAmount":108,"totalAmountIncludingTax":828,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:46.797Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O3RTd0lYcjhwa0lzSlVCaGZkd2w0WDA5VG5vUTdsOEJRelBLQXhPdDhsc3M9MTswMDsn\"","id":"75f368a4-c404-4fb0-8618-6db923ca23da","number":"103286","externalDocumentNumber":"","invoiceDate":"2018-07-18","dueDate":"2018-07-18","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":365,"totalTaxAmount":0,"totalAmountIncludingTax":365,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:50.797Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0OzFSNCtPR0x6OEN6Rkx1RitvVTJDUTVjT25ZNTZpeFNRSVV2M21MMXp1a2c9MTswMDsn\"","id":"61c21c3c-1e8f-4801-99d9-6e04ef3ae509","number":"103357","externalDocumentNumber":"","invoiceDate":"2018-12-24","dueDate":"2018-12-24","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":416,"totalTaxAmount":0,"totalAmountIncludingTax":416,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:01.97Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O2RPOG5BVTVYOVZtazFtYXJwS3lSRERqOFZSeTRkelpoelJyQnVlQ05taUE9MTswMDsn\"","id":"181f4fcf-4bb3-4119-8fd5-70272909d6ce","number":"103277","externalDocumentNumber":"","invoiceDate":"2018-06-22","dueDate":"2018-06-22","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4100,"totalTaxAmount":615,"totalAmountIncludingTax":4715,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:49.353Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O2Y4SU9oMS9EYlNHMld0Q3pSNEh3dk5kTzNiTFNkVEZNdTJCVzMwNHBTQ0U9MTswMDsn\"","id":"474ae1a0-dce1-44e5-b0df-7139b9b1d134","number":"103291","externalDocumentNumber":"","invoiceDate":"2018-07-23","dueDate":"2018-07-23","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5740,"totalTaxAmount":861,"totalAmountIncludingTax":6601,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:51.567Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0OzdoenpRSnluUkg0bk50L01JSWxxbnBEenpmY3cvdVM4bWJQUG9oWHFqUVk9MTswMDsn\"","id":"532a3209-f06c-4378-a215-71518579ae31","number":"103251","externalDocumentNumber":"","invoiceDate":"2018-04-22","dueDate":"2018-04-22","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":7380,"totalTaxAmount":1107,"totalAmountIncludingTax":8487,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:45.2Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O1RBUUhSMWVvZFh4dVRBUkFkbEJrdG4vcGc3TXBzVytwc21WUnU0dFB5dTQ9MTswMDsn\"","id":"9b53b483-4ef9-4de8-879d-736d29bb6627","number":"103323","externalDocumentNumber":"","invoiceDate":"2018-09-30","dueDate":"2018-09-30","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":365,"totalTaxAmount":0,"totalAmountIncludingTax":365,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:56.64Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O29xaElmWnlURVFqUG9INGdaY3FEa3hwM0htM3ZDai9oMVJuVEZLSFpycms9MTswMDsn\"","id":"723c0349-81b1-4191-a78b-73ca8f0b27e6","number":"103320","externalDocumentNumber":"","invoiceDate":"2018-09-23","dueDate":"2018-09-23","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":16229,"totalTaxAmount":0,"totalAmountIncludingTax":16229,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:56.133Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O2ZLeXhHcmFDMGZiU0JyU3ViUGQ1T2FTSi9aTCtPRlF5L290azdieGF5RU09MTswMDsn\"","id":"7d3a71e8-b0c9-44ce-9683-74aa081986cf","number":"103376","externalDocumentNumber":"","invoiceDate":"2019-01-31","dueDate":"2019-02-28","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":5905.25,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5135,"totalTaxAmount":770.25,"totalAmountIncludingTax":5905.25,"status":"Open","lastModifiedDateTime":"2019-06-24T17:56:04.99Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O01JbFNDZngzUFFtbmZ2alJyZ015VURQWUNKVjNYUjJ5T3RtRktKbFV0QVE9MTswMDsn\"","id":"2af8b452-dddd-4a97-a715-7659856ddd01","number":"103212","externalDocumentNumber":"","invoiceDate":"2018-01-21","dueDate":"2018-01-21","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":20757,"totalTaxAmount":3113.55,"totalAmountIncludingTax":23870.55,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:39.227Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O3VlUlpZUitMZ1k0a2M0Y2dOclpTV1dwdkMxaXJ6KzF1N0taeWRDalIxRUk9MTswMDsn\"","id":"18b5489a-b786-40ae-85ec-77295d8f2b3e","number":"103380","externalDocumentNumber":"","invoiceDate":"2019-02-17","dueDate":"2019-02-17","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:05.513Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O21CcVVvUEl5TWNiejc4cHI1QUlTd09HSU54cWJCbjVpWlpPbmowcnp5cms9MTswMDsn\"","id":"37d3c38e-2cab-46ef-8764-785774be872b","number":"103258","externalDocumentNumber":"","invoiceDate":"2018-05-16","dueDate":"2018-05-16","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":312,"totalTaxAmount":46.8,"totalAmountIncludingTax":358.8,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:46.427Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O3VqOUJ5dHJnZzJhaHR5eVNGRDI4dWozY0ZPU3FvMVdYWjk1bThSUmsxN0k9MTswMDsn\"","id":"d292e068-b41d-4172-bab1-787f1a044252","number":"103208","externalDocumentNumber":"","invoiceDate":"2018-01-18","dueDate":"2018-01-18","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":365,"totalTaxAmount":0,"totalAmountIncludingTax":365,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:38.557Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0OzllVW5ER29iZE9sRWJQZkVyd3pNK3hPUVpNYnI1OUJkMkRvRUpoSjk5TEE9MTswMDsn\"","id":"d765bedf-7574-45ef-a54d-78c081213672","number":"103275","externalDocumentNumber":"","invoiceDate":"2018-06-19","dueDate":"2018-06-19","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":30899,"totalTaxAmount":4634.85,"totalAmountIncludingTax":35533.85,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:49.013Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0OzdqUnNDcStnME5Qc2M5dW50cmN1dEpPODZVdDB4SXFvVG9PMFVuMDc2Z3M9MTswMDsn\"","id":"25b697b5-21ba-4193-8e59-78e4cfa1e08f","number":"103279","externalDocumentNumber":"","invoiceDate":"2018-06-23","dueDate":"2018-06-23","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:49.783Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O0NZQXVtY3p5Yk1yeGZHdE1YSGllcm4zZ0FOSGN2VndkVWt6bit0cC8wNFU9MTswMDsn\"","id":"68f48fc4-5cf5-4099-bbed-7a556f468e80","number":"103311","externalDocumentNumber":"","invoiceDate":"2018-09-01","dueDate":"2018-09-01","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":2885,"totalTaxAmount":0,"totalAmountIncludingTax":2885,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:54.633Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O1IvdS9KVTFyU3M4ay81WkdWMkg4WlFvanpFUzgvQ2FlZHRrZE9CdlJJdkU9MTswMDsn\"","id":"f24c3dd2-5a05-42b1-81b6-7fc5830f73dc","number":"103300","externalDocumentNumber":"","invoiceDate":"2018-08-18","dueDate":"2018-08-18","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":365,"totalTaxAmount":0,"totalAmountIncludingTax":365,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:52.92Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O2NlOFhBMlNONzBkT2pDWlJCNEtFWG42aUs2S250TkUvaWJ5MFJDcDRCL009MTswMDsn\"","id":"2bfe9f69-56a9-4091-afae-827bbd3ce749","number":"103310","externalDocumentNumber":"","invoiceDate":"2018-08-31","dueDate":"2018-08-31","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4770,"totalTaxAmount":715.5,"totalAmountIncludingTax":5485.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:54.48Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O3dYR3BWMFdIajh1OXA1NERZR014U0hYWmxpU21Ra2dCcURaYnpWdlNKeVE9MTswMDsn\"","id":"d5ef059d-5d59-4cba-8c3e-834187ffe697","number":"103306","externalDocumentNumber":"","invoiceDate":"2018-08-24","dueDate":"2018-08-24","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":728,"totalTaxAmount":0,"totalAmountIncludingTax":728,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:53.78Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0Oyt0OGQ2azNucnE1T1ZJSVJmL04yd2xHaTFZTHY0akd5cmpkRm5GTERUSHc9MTswMDsn\"","id":"43ed57fe-0f0f-49c2-9e8a-83df878be7bc","number":"103364","externalDocumentNumber":"","invoiceDate":"2019-01-16","dueDate":"2019-01-16","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":312,"totalTaxAmount":46.8,"totalAmountIncludingTax":358.8,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:03.097Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0OytCSWw3Z2xVcUVwQ0MwRFBNRHhZYWdrVUExYjBjUitoMGRJeFRpOVhmUG89MTswMDsn\"","id":"1a7a37c5-336c-4344-a066-83f69ab9e98a","number":"103308","externalDocumentNumber":"","invoiceDate":"2018-08-26","dueDate":"2018-08-26","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:54.117Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O2hleFYxOTdteFBJSVhuTlFYOHE5dkRPSW9DV1dnMTd6ZGJwRG40bVRxZDA9MTswMDsn\"","id":"51b5ed66-c2cf-4c25-a6de-858c204d0a5a","number":"103232","externalDocumentNumber":"","invoiceDate":"2018-03-16","dueDate":"2018-03-16","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":312,"totalTaxAmount":46.8,"totalAmountIncludingTax":358.8,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:42.353Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O1FFZXB1aitKaDhoaVBiTGZjWEN0eGxrYTlDSTF5QnFBN0JNNjNsbmN0ek09MTswMDsn\"","id":"68800cba-a36a-498d-a55d-895a8d48149e","number":"103324","externalDocumentNumber":"","invoiceDate":"2018-10-16","dueDate":"2018-10-16","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":312,"totalTaxAmount":46.8,"totalAmountIncludingTax":358.8,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:56.767Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O0txU2M0QWV6QlFPMVZtaU0veXI2d20rKzRqS091NkVNbjIxR2JPbWdtbnc9MTswMDsn\"","id":"f9d3b2f9-cf0c-4462-8333-8f1726c9637b","number":"103205","externalDocumentNumber":"","invoiceDate":"2019-04-02","dueDate":"2019-05-31","customerPurchaseOrderReference":"OPEN","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":15289.25,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":13295,"totalTaxAmount":1994.25,"totalAmountIncludingTax":15289.25,"status":"Draft","lastModifiedDateTime":"2019-06-28T03:22:49.787Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0OzFROWZnSTN2VXZ1Q3NwWHJzNStQNVk4K21Zb3JUTnNRRmt1RU53anlSNG89MTswMDsn\"","id":"6864d531-3299-48a5-b5e5-90fc170e35c7","number":"103200","externalDocumentNumber":"","invoiceDate":"2019-05-01","dueDate":"2019-06-30","customerPurchaseOrderReference":"OPEN","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":16025.25,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":13935,"totalTaxAmount":2090.25,"totalAmountIncludingTax":16025.25,"status":"Draft","lastModifiedDateTime":"2019-06-28T03:22:49.833Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O2RtM2hTVkdzbG5Qa1Q3OHFwUktxSXh1bWZ3RlJoL0xod2FHNU4wb0FZdlU9MTswMDsn\"","id":"1ac16b00-fdc2-4ee5-9523-9124b062f1cc","number":"103333","externalDocumentNumber":"","invoiceDate":"2018-10-24","dueDate":"2018-10-24","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":6770,"totalTaxAmount":0,"totalAmountIncludingTax":6770,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:58.097Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0OzZYd1dMRTBxWktHdjZNcGtrbGFTMW1EbHRrcGFuVmI2cVNTNmgzNVhVbGc9MTswMDsn\"","id":"cf53c520-93c6-4b81-b9a2-91830613beb9","number":"103335","externalDocumentNumber":"","invoiceDate":"2018-10-27","dueDate":"2018-10-27","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":20586,"totalTaxAmount":0,"totalAmountIncludingTax":20586,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:58.473Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O05UMWFnQWc0VDdJWkt3V3hXM3Jkbm5mM3JOdk9SeU9JWDc0M1crSytIUFU9MTswMDsn\"","id":"e26ffb38-a816-4090-836c-92061b40deb8","number":"103336","externalDocumentNumber":"","invoiceDate":"2018-10-31","dueDate":"2018-10-31","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3910,"totalTaxAmount":586.5,"totalAmountIncludingTax":4496.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:58.667Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O2tUUVJoaFBIRzE2Z1J6NTNaRFJQV29LRTB4YlZaUkdRQjhpRXZtVFZZanM9MTswMDsn\"","id":"35d10628-f887-425f-a301-92162c5c33b4","number":"103312","externalDocumentNumber":"","invoiceDate":"2018-09-15","dueDate":"2018-09-15","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":208,"totalTaxAmount":31.2,"totalAmountIncludingTax":239.2,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:54.767Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O20zSExuMXRwcTVJc0R6b0NEMnB2YUhLRkpSd2hQT1ZRZSs4TDh4ci9oMDA9MTswMDsn\"","id":"26660378-11c8-4f47-b24d-93c12665af46","number":"103352","externalDocumentNumber":"","invoiceDate":"2018-12-19","dueDate":"2018-12-19","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":360,"totalTaxAmount":54,"totalAmountIncludingTax":414,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:01.243Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O2RadG1tSUJVSFlkOFNsSDJQQWNpTWphaVB1WU9PNG5OTGFQcjIxZ3paWGM9MTswMDsn\"","id":"c4a17b32-b255-4f7c-90fa-9569817bfbc2","number":"103290","externalDocumentNumber":"","invoiceDate":"2018-07-21","dueDate":"2018-07-21","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":22650,"totalTaxAmount":3397.5,"totalAmountIncludingTax":26047.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:51.423Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O3NJcUk2TDdNZ0pnZUtjNnpwNFVtRjB6TzN0alA0S0k2clZablE0elNJb1U9MTswMDsn\"","id":"42d1469d-b96b-46df-ad6c-9913ffab69e5","number":"103248","externalDocumentNumber":"","invoiceDate":"2018-04-18","dueDate":"2018-04-18","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":720,"totalTaxAmount":108,"totalAmountIncludingTax":828,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:44.67Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O1RvM2o1SU51Q1ZwSHFvUlg1cXlIczVFK2JkK0d4ZVZKcThkS2J6akVJQ0E9MTswMDsn\"","id":"4ae43474-30bd-4033-876a-9a8a814263a5","number":"103327","externalDocumentNumber":"","invoiceDate":"2018-10-19","dueDate":"2018-10-19","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":720,"totalTaxAmount":108,"totalAmountIncludingTax":828,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:57.14Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O05BTDV0TDdCT1RXcVZDakZ0U3hZQzhpV1NhbkZ4WUEwZ1NOdFEyTFArZUU9MTswMDsn\"","id":"99053e34-2922-4244-8c60-9c887a75c854","number":"103262","externalDocumentNumber":"","invoiceDate":"2018-05-20","dueDate":"2018-05-20","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:46.917Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O1dtbzRjakpjN3c3YktKSXo5bVBjWW5CQUE2UCtzZmRlbkRueGFWYVZ0eHM9MTswMDsn\"","id":"d0abc4ce-4b77-44cc-993c-9d7c85fc7457","number":"103400","externalDocumentNumber":"","invoiceDate":"2019-03-26","dueDate":"2019-04-30","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":2098.75,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1825,"totalTaxAmount":273.75,"totalAmountIncludingTax":2098.75,"status":"Open","lastModifiedDateTime":"2019-06-24T17:56:08.79Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0OzJiTGZZNlQzNk5nOUYvYnJ3RHdqY1RzaGRhS3hZSWI2dkdFWEgxVEFLWTQ9MTswMDsn\"","id":"d914fc91-fb55-4b84-8973-9d984bdbd5a0","number":"103227","externalDocumentNumber":"","invoiceDate":"2018-02-22","dueDate":"2018-02-22","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":6050,"totalTaxAmount":0,"totalAmountIncludingTax":6050,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:41.56Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O29KN0trM3BGWlduKzZSbG1QR3VRYXZ0QU1pQ1h6ZU1GWGtvYzQyUVc5VTA9MTswMDsn\"","id":"d37da8a9-63fc-461f-9fa8-9de74b5d919b","number":"103345","externalDocumentNumber":"","invoiceDate":"2018-11-23","dueDate":"2018-11-23","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:00.147Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O2NtaEdGU2x3UU4wYUdVYVByMWlOZnd2KzZhWWFOdzBpMmlsR1krTWpHT1U9MTswMDsn\"","id":"acd1d766-386e-4f3d-ab44-9e40197c353c","number":"103374","externalDocumentNumber":"","invoiceDate":"2019-01-26","dueDate":"2019-02-28","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":1679,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Open","lastModifiedDateTime":"2019-06-24T17:56:04.637Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O3JrUUk5bDBoaEhqaE96NWNPRU85Wmh1Tkw1Q3U3czlXQjBCZThKYmFMbWM9MTswMDsn\"","id":"37833072-0747-45d5-bccb-9f27f3539483","number":"103282","externalDocumentNumber":"","invoiceDate":"2018-06-26","dueDate":"2018-06-26","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":8690,"totalTaxAmount":0,"totalAmountIncludingTax":8690,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:50.287Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O29nSGtzSGxwMXdOaUFoaHR6c2dHOG9IZHFucGlpWHlnMWNSbHgyeGZ1Zk09MTswMDsn\"","id":"ac54ceed-873e-4d96-9f46-9f75dc83ff3e","number":"103398","externalDocumentNumber":"","invoiceDate":"2019-03-24","dueDate":"2019-03-24","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1248,"totalTaxAmount":0,"totalAmountIncludingTax":1248,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:08.44Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O2FBekl4KzdkUEh6UWpEb2pRREpOSzR3RlV1Sk9UYWl4ZEd0bXBmcFFIaGc9MTswMDsn\"","id":"496b9b08-f829-49ab-b8fa-a0e6c397c81d","number":"103211","externalDocumentNumber":"","invoiceDate":"2018-01-21","dueDate":"2018-01-21","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4365,"totalTaxAmount":654.75,"totalAmountIncludingTax":5019.75,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:39.037Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O2hHdmZncldISllBMVJ4NkI3L0RXTjZ1aWVOa2V6N2Y4R05uSDZkVjRIMXc9MTswMDsn\"","id":"732bbca5-3f9b-453d-8b38-a1689b43916c","number":"103295","externalDocumentNumber":"","invoiceDate":"2018-07-27","dueDate":"2018-07-27","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":19861,"totalTaxAmount":0,"totalAmountIncludingTax":19861,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:52.22Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O1lBQmMwRW9XRVE4UFhGTnVTS2gxYnNTSWZEbERHQnRyUlh1WGo0WVR6Kzg9MTswMDsn\"","id":"0f4be7d7-9e6f-4390-a938-a3f2b07946e0","number":"103399","externalDocumentNumber":"","invoiceDate":"2019-03-24","dueDate":"2019-03-24","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":8715,"totalTaxAmount":0,"totalAmountIncludingTax":8715,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:08.637Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0OzFCcHNqV25oaWY2NHFaYzFpQUUxalFPcXRBY1BaUXQ1dEF4aDNNOTk2cU09MTswMDsn\"","id":"650702d9-b69e-4c0c-bede-a5175654cf0f","number":"103235","externalDocumentNumber":"","invoiceDate":"2018-03-19","dueDate":"2018-03-19","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":720,"totalTaxAmount":108,"totalAmountIncludingTax":828,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:42.713Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O2lXVXV2bGpJZ3JVRTZFWHZMT01nb2lOWDhQTnVJVUlqVkY1TUc1Z0h6S0U9MTswMDsn\"","id":"37782ade-c611-4136-824f-a5f51bb097dd","number":"103237","externalDocumentNumber":"","invoiceDate":"2018-03-21","dueDate":"2018-03-21","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5815,"totalTaxAmount":872.25,"totalAmountIncludingTax":6687.25,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:43.007Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O3lZYkRxZ3BxWDFUb20xeUJ1MmpyM1FoK0w5dUxhSnV6WlowWXpINGtXMGs9MTswMDsn\"","id":"a7d2aa35-444c-4928-99da-a616b6579217","number":"103239","externalDocumentNumber":"","invoiceDate":"2018-03-23","dueDate":"2018-03-23","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":7380,"totalTaxAmount":1107,"totalAmountIncludingTax":8487,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:43.337Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O0NnaTk5UERsaFNFdkcyQXVMUnA1ekFsaGFFa0xBZU1vT1FabGZYSkZiZUU9MTswMDsn\"","id":"683110df-26cd-4132-b2de-a632d783c189","number":"103366","externalDocumentNumber":"","invoiceDate":"2019-01-18","dueDate":"2019-01-18","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":365,"totalTaxAmount":0,"totalAmountIncludingTax":365,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:03.357Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O2grTEgyQmxpTEdNSmc4Mk0xTmt2bXBjd05FZDBXQi84b2JIR0ZWRlZjcUE9MTswMDsn\"","id":"817a3e98-a786-4ea8-b8eb-a65a6190b00a","number":"103272","externalDocumentNumber":"","invoiceDate":"2018-06-15","dueDate":"2018-06-15","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":312,"totalTaxAmount":46.8,"totalAmountIncludingTax":358.8,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:48.56Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O2hlOWpESklpaVVUT09yR3pZVm1DZzBINHpkQ1lId3Zla1h1M2lOTXI1Vms9MTswMDsn\"","id":"738d8082-2328-4113-8a31-a8a2649774a9","number":"103346","externalDocumentNumber":"","invoiceDate":"2018-11-23","dueDate":"2018-11-23","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":13586,"totalTaxAmount":0,"totalAmountIncludingTax":13586,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:00.32Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O3p3RlA3WE42TG5HVXBlSGdyeTk2clF0KzFQdnh0SGNXSnFqZ013YVU2OWs9MTswMDsn\"","id":"c2a8c3d4-fbdd-4ebb-a158-ad2ec738b2f4","number":"103289","externalDocumentNumber":"","invoiceDate":"2018-07-21","dueDate":"2018-07-21","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4000,"totalTaxAmount":600,"totalAmountIncludingTax":4600,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:51.21Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O2ZzWkhmZys0QjhIb0U2Q2lMT3AzemY2ZlVHYWxOVjFsb3QzUG1YaHJnTFE9MTswMDsn\"","id":"96ba09d2-2a9e-4da0-a633-ad6ef594d4c4","number":"103390","externalDocumentNumber":"","invoiceDate":"2019-03-16","dueDate":"2019-03-16","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":416,"totalTaxAmount":62.4,"totalAmountIncludingTax":478.4,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:07.257Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O3V4V2tsblREaUZwT3E0Q0hvTzduanBodE94RFczaHRtNUZuTlV5SEppb1U9MTswMDsn\"","id":"90ba0c5a-cbe6-40e0-818a-b1079ed5fac2","number":"103253","externalDocumentNumber":"","invoiceDate":"2018-04-23","dueDate":"2018-04-23","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":2190,"totalTaxAmount":328.5,"totalAmountIncludingTax":2518.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:45.623Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O1dlQjA5SzUvUG9weDNZVXZIMllJTkFadHFlUkxmR3N0eDVvTXRhWENrU0E9MTswMDsn\"","id":"f2450787-21e7-47bc-a6fd-b1f6803df6e7","number":"103384","externalDocumentNumber":"","invoiceDate":"2019-02-20","dueDate":"2019-02-20","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":8920,"totalTaxAmount":1338,"totalAmountIncludingTax":10258,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:06.233Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O1hzS1VtREhvNGVBQkY3UGZEMm5aVVpWdjExZVlTVlNqZGlhOEJOam1LK2c9MTswMDsn\"","id":"adffc204-8562-4b57-8733-b3145b162649","number":"103215","externalDocumentNumber":"","invoiceDate":"2018-01-24","dueDate":"2018-01-24","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":7275,"totalTaxAmount":0,"totalAmountIncludingTax":7275,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:39.687Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0OzBhRlhIRDdxa0UyWlhtVTd1Nmp3SEcyMWdkVWJybGgxdWhSUmZNMkNMNUE9MTswMDsn\"","id":"9f9b3c60-5eff-439f-9165-b39dbebc75dc","number":"103204","externalDocumentNumber":"","invoiceDate":"2019-05-01","dueDate":"2019-06-30","customerPurchaseOrderReference":"OPEN","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":520,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":520,"totalTaxAmount":0,"totalAmountIncludingTax":520,"status":"Draft","lastModifiedDateTime":"2019-06-28T03:22:50.043Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O2l4UGpRM0hGZ0pqdUhRKzlBZStjVXN0SzNySklLaTF2b0NnUTl1YWo2ek09MTswMDsn\"","id":"f805c0ef-5b9f-4068-aa1b-b43f96b2d2ec","number":"103301","externalDocumentNumber":"","invoiceDate":"2018-08-19","dueDate":"2018-08-19","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":720,"totalTaxAmount":108,"totalAmountIncludingTax":828,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:53.04Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O2EvSXE2M1hkUW1GUTJWV2xWbEtCRmxtL1Uxd1JhL1RQTjFvTVRXaGNwMkE9MTswMDsn\"","id":"95a8aa5d-1290-4f81-ab34-b4791c72e859","number":"103331","externalDocumentNumber":"","invoiceDate":"2018-10-23","dueDate":"2018-10-23","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":8200,"totalTaxAmount":1230,"totalAmountIncludingTax":9430,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:57.79Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O3BqUVhSWXdmanRiTkpqU0NycnhEYjBFUGhLTnl4VFJHRjZzRUtEb2t3akk9MTswMDsn\"","id":"5f5ecf55-38ef-44b4-b5f8-b5a1de08ea98","number":"103381","externalDocumentNumber":"","invoiceDate":"2019-02-18","dueDate":"2019-02-18","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:05.643Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O3NLYzNxNnptb3hWYy9Kb0UvU1hMeXgraU9BZTE1NXpyQ1grK2o5UmxNN009MTswMDsn\"","id":"24092518-8782-4971-bc04-b5b8a483247c","number":"103388","externalDocumentNumber":"","invoiceDate":"2019-02-28","dueDate":"2019-03-31","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":5050,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5050,"totalTaxAmount":0,"totalAmountIncludingTax":5050,"status":"Open","lastModifiedDateTime":"2019-06-24T17:56:06.96Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O2hPbVAvZUVtN0s1ZEhsU25RREdGMGxJdTJ6dXRwUU9SNVNpejB3VUdqTU09MTswMDsn\"","id":"c92e7a94-4efa-4bfa-ba05-b60925ca9ad7","number":"103243","externalDocumentNumber":"","invoiceDate":"2018-03-27","dueDate":"2018-03-27","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":29633,"totalTaxAmount":0,"totalAmountIncludingTax":29633,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:43.98Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O1JTSU9zdWRxQzBrY2tlSXl4WDBDNDJOcnRRLy9seW9GU28vczJlWlA3RlU9MTswMDsn\"","id":"96fc851b-d077-4e02-830c-b7afc76ce2e3","number":"103382","externalDocumentNumber":"","invoiceDate":"2019-02-19","dueDate":"2019-02-19","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5095,"totalTaxAmount":764.25,"totalAmountIncludingTax":5859.25,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:05.843Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O2tGY2lOMWlKYVVUUXdxczBrS3VPeXYrbkpDcnZaQU9zeERSZmNTZUZ5ZHM9MTswMDsn\"","id":"95a64a8a-ff10-4065-8b13-b844f054b7d4","number":"103334","externalDocumentNumber":"","invoiceDate":"2018-10-26","dueDate":"2018-10-26","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1095,"totalTaxAmount":164.25,"totalAmountIncludingTax":1259.25,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:58.277Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O29yVEN4YUVvSDdIdU1HKzBzd0NlZk51NkRuMXVZbHV2bGxhY0NySFdHeEU9MTswMDsn\"","id":"647c78be-4079-4266-9806-b98cc7e85fb2","number":"103233","externalDocumentNumber":"","invoiceDate":"2018-03-17","dueDate":"2018-03-17","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1825,"totalTaxAmount":273.75,"totalAmountIncludingTax":2098.75,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:42.477Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O3NmT0xjbzRPenkvS3Vnb1FEbDhqNmxtZ1VqY0loa2NZSDRuR0NQbWJINUU9MTswMDsn\"","id":"df48d0d2-45c8-4780-b28b-ba693dba3e31","number":"103285","externalDocumentNumber":"","invoiceDate":"2018-07-17","dueDate":"2018-07-17","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:50.673Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0OzFmVXVOZVVNMElZU3BoN0YzL3dudmxPbkhSQWc2dkZuMzBpazErVGlOL1k9MTswMDsn\"","id":"c0399dc1-2c9e-4672-98ef-bd704e00c5af","number":"103339","externalDocumentNumber":"","invoiceDate":"2018-11-17","dueDate":"2018-11-17","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":365,"totalTaxAmount":0,"totalAmountIncludingTax":365,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:59.083Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O3k5NXhiU1ovenpCeTJrdDVNR3Vvb3RUS0pkMkdWeHpOTzBsbGdEbTREWjQ9MTswMDsn\"","id":"179e3caf-0fdc-4ce5-81bf-bdf609a449b2","number":"103305","externalDocumentNumber":"","invoiceDate":"2018-08-23","dueDate":"2018-08-23","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5740,"totalTaxAmount":861,"totalAmountIncludingTax":6601,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:53.66Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O1FMQ1ZhZlRpUkl6ekZ5aHc3cFFJSGtna3N5U2kraWVUbis3NzUyd0JCb0E9MTswMDsn\"","id":"43f28b1e-f8ea-46d5-a7e7-bf81643f2084","number":"103392","externalDocumentNumber":"","invoiceDate":"2019-03-18","dueDate":"2019-03-18","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:07.523Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0Ozdqb0dTbWJFeEdLT01PVFhRZmhVK0RTNlU4akFRZHhoSkVERmRXSjNCTkE9MTswMDsn\"","id":"4e5c5d54-0b01-496d-a788-c183f680fcff","number":"103371","externalDocumentNumber":"","invoiceDate":"2019-01-23","dueDate":"2019-01-23","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4920,"totalTaxAmount":738,"totalAmountIncludingTax":5658,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:04.137Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0OzZpQmlOTWpYRXFqSVg2UGNZZEJ4ZE9nYk5WbEJ6N0xEVlQ1aVdWa1U0bU09MTswMDsn\"","id":"b46a713d-7189-4bf3-9e2b-c18475c8fcc3","number":"103268","externalDocumentNumber":"","invoiceDate":"2018-05-26","dueDate":"2018-05-26","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:47.893Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O0p5WGNkVUpjT1R5T1F1OWRneWUrNnZQU3Z3bFNBWjdDYlFkeEhiSWljNXM9MTswMDsn\"","id":"fcdd5aab-d3df-4b5e-8e07-c4399ad7dc8e","number":"103296","externalDocumentNumber":"","invoiceDate":"2018-07-31","dueDate":"2018-07-31","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3180,"totalTaxAmount":477,"totalAmountIncludingTax":3657,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:52.4Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O0Jmcmsrd1M3WEhuNEI1TWp4Vm1pYW9ad3RheHh1dTMxTkV1a3VnWEc4M0k9MTswMDsn\"","id":"e5096986-c8c1-45ca-b3be-c56b3f6f5830","number":"103396","externalDocumentNumber":"","invoiceDate":"2019-03-21","dueDate":"2019-03-21","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":38511,"totalTaxAmount":5776.65,"totalAmountIncludingTax":44287.65,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:08.16Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O1l1dUZOQTVORWp4b1dTMFFsbFYzZEo1QjN5OVhPUGZETXBMa1VqQkRBSlU9MTswMDsn\"","id":"d98d7dca-bbb8-4253-8993-c68d85e5946a","number":"103210","externalDocumentNumber":"","invoiceDate":"2018-01-20","dueDate":"2018-01-20","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:38.847Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O0hkZXMvdGk5WHpiQnlod0NnUnN5VFhzU2c2RDc5cjBsZXlrc2p3Ky9Xa009MTswMDsn\"","id":"58767fce-de59-4227-bcfa-c90eab1a8774","number":"103402","externalDocumentNumber":"","invoiceDate":"2019-03-31","dueDate":"2019-04-30","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":6325,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5500,"totalTaxAmount":825,"totalAmountIncludingTax":6325,"status":"Open","lastModifiedDateTime":"2019-06-24T17:56:09.147Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O09rZkxKSXNqOTBsM3JuNU95YVUzb3pkVVhBanRCUStiVE5yM29LTG9JakU9MTswMDsn\"","id":"d73889bc-61be-4466-b217-c91428f6eed7","number":"103393","externalDocumentNumber":"","invoiceDate":"2019-03-19","dueDate":"2019-03-19","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":720,"totalTaxAmount":108,"totalAmountIncludingTax":828,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:07.653Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0OytVK1N4eTljOG5GQjZZSU8vN2ZpRm52SEdONGZucVpZZUVaRUZpY29wRUE9MTswMDsn\"","id":"65e1603e-b997-4b03-b953-c93bf1856de4","number":"103378","externalDocumentNumber":"","invoiceDate":"2019-02-15","dueDate":"2019-02-15","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":312,"totalTaxAmount":46.8,"totalAmountIncludingTax":358.8,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:05.257Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O09xWnpGeGhXbzdRWDY0Q0FTcU4ybHVpdlhFUk5KK056MGduNkY3UWVydTQ9MTswMDsn\"","id":"08eaaada-febc-47f5-ad99-ca07ef4f590d","number":"103313","externalDocumentNumber":"","invoiceDate":"2018-09-17","dueDate":"2018-09-17","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":365,"totalTaxAmount":0,"totalAmountIncludingTax":365,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:54.887Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0OzZZMDA4Ykg2UkJRZHArcTJteUI2VTVDNkMzdnEyR1pyRThKWU5HazJZZlE9MTswMDsn\"","id":"638997e8-d3f9-48f0-975d-cb94dc65d605","number":"103391","externalDocumentNumber":"","invoiceDate":"2019-03-17","dueDate":"2019-03-17","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1825,"totalTaxAmount":273.75,"totalAmountIncludingTax":2098.75,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:07.39Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O2NLd3I2U3dIWWdCQTVLOGNUV1g3MTI0Y2NDUVVhdzBxWHdKTjhvOGhqYTg9MTswMDsn\"","id":"60b656c7-1e05-4f1a-88de-cbc680c2b0c0","number":"103257","externalDocumentNumber":"","invoiceDate":"2018-04-30","dueDate":"2018-04-30","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:46.307Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O25ENCtyd1pFcUNqWU9OaEVWS05ETW5NWFFvVVZmY1RFdWNFdTBKVUR5eTg9MTswMDsn\"","id":"a3225988-8afb-41b9-9d18-cd457d83a448","number":"103389","externalDocumentNumber":"","invoiceDate":"2019-02-28","dueDate":"2019-03-31","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":5905.25,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5135,"totalTaxAmount":770.25,"totalAmountIncludingTax":5905.25,"status":"Open","lastModifiedDateTime":"2019-06-24T17:56:07.123Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O0RVeDVlblN1MjRYR2VSYnRJaVUzQk9PRGN5RTJEaHNpUzZPaUQrTlM5bk09MTswMDsn\"","id":"44f63a34-5a97-4beb-bfe3-d23602391644","number":"103298","externalDocumentNumber":"","invoiceDate":"2018-08-16","dueDate":"2018-08-16","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":312,"totalTaxAmount":46.8,"totalAmountIncludingTax":358.8,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:52.683Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O2N0Mm9GYXFjVjFHajFQUmFuTHk4YUsvZmc2Zm5hR0RiN3pCeFBLVDdBbk09MTswMDsn\"","id":"e4fc366f-b479-4dd1-9895-d2497462ed27","number":"103234","externalDocumentNumber":"","invoiceDate":"2018-03-18","dueDate":"2018-03-18","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:42.597Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0Oy9ZOGFWYmhITHhUeE1TcDNITnQyYUltQm1ScFU4bm1uZFN0NCt5WlQxdE09MTswMDsn\"","id":"79ed2023-ad45-4e90-8ac0-d35351693348","number":"103218","externalDocumentNumber":"","invoiceDate":"2018-01-31","dueDate":"2018-01-31","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3910,"totalTaxAmount":586.5,"totalAmountIncludingTax":4496.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:40.197Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O21NZGMyN3Jabnp4dlVkU1lwRnFndlIvR1pTZEY3akU4MW1KcnVmRTk1TDg9MTswMDsn\"","id":"27437153-b927-4b31-b3ba-d35f2707cbf9","number":"103247","externalDocumentNumber":"","invoiceDate":"2018-04-17","dueDate":"2018-04-17","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":365,"totalTaxAmount":0,"totalAmountIncludingTax":365,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:44.547Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O0ZsblMybVJ0TUNLNGdMdmxleHJidXF0WFMwcVJBR2cvRGVVOHBXaktkMms9MTswMDsn\"","id":"62c598ec-0d46-4320-a745-d3652780fe8e","number":"103221","externalDocumentNumber":"","invoiceDate":"2018-02-15","dueDate":"2018-02-15","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:40.59Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O3l5cVBUSlRsNWZIc0g5OTlhVStMV2tzWTMrb3UzY2JkeDBoZVY0dHJraXM9MTswMDsn\"","id":"96f66644-a3ac-45c9-b30e-d4fb7396dc6f","number":"103273","externalDocumentNumber":"","invoiceDate":"2018-06-17","dueDate":"2018-06-17","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:48.687Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0OzdCVmVMQTluYm5UeWxGN01CZnFBUnhtam9OSVdSZjMzdXI3TkxyTFZGVmM9MTswMDsn\"","id":"88d05077-405f-4f77-a913-d7e5aad17476","number":"103317","externalDocumentNumber":"","invoiceDate":"2018-09-22","dueDate":"2018-09-22","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":2460,"totalTaxAmount":369,"totalAmountIncludingTax":2829,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:55.57Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O2JyYkE4TnVLZTFrMk5tNXpIdlg3MDgrNnl5QUNUeFRVRmRsNWd5YVJ3Yjg9MTswMDsn\"","id":"81a9c425-3fb2-4ff1-aaf3-d89ed8d91438","number":"103209","externalDocumentNumber":"","invoiceDate":"2018-01-19","dueDate":"2018-01-19","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":720,"totalTaxAmount":108,"totalAmountIncludingTax":828,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:38.713Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O0dtV0Y2R1dPMTFINHBvZWxSbmhPTEZzL2hMYUFGTWhhMXJaejNZLzFROUk9MTswMDsn\"","id":"cffd750c-c851-4c2c-b307-dbb263205726","number":"103299","externalDocumentNumber":"","invoiceDate":"2018-08-17","dueDate":"2018-08-17","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:52.803Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O0FpNGt4Skx0UXo0bEcxd2UwVkIrZVpxRnNMNklzVDBTQ2lJLzU3ZnlDODA9MTswMDsn\"","id":"122cf71c-1650-4057-8b7d-dc48173c7aae","number":"103387","externalDocumentNumber":"","invoiceDate":"2019-02-23","dueDate":"2019-03-31","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":28878,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":28878,"totalTaxAmount":0,"totalAmountIncludingTax":28878,"status":"Open","lastModifiedDateTime":"2019-06-24T17:56:06.767Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O0RLaXA0OWtBT21lelBZTytqSWpNRWx5aFpOazFJNkxQajhWMDAxWDA4Zk09MTswMDsn\"","id":"894ffac8-c7af-46bc-8ffc-dcd565dc97f1","number":"103386","externalDocumentNumber":"","invoiceDate":"2019-02-23","dueDate":"2019-03-31","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":2518.5,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":2190,"totalTaxAmount":328.5,"totalAmountIncludingTax":2518.5,"status":"Open","lastModifiedDateTime":"2019-06-24T17:56:06.59Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O2F1Si9vWDVkNWJQWXhDOU51WStjN21JajkyQ3ZJMVhZOERyMDF0N3lNVDA9MTswMDsn\"","id":"6f29cc77-a939-40d1-a12d-dce63d6d4c69","number":"103354","externalDocumentNumber":"","invoiceDate":"2018-12-21","dueDate":"2018-12-21","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1095,"totalTaxAmount":164.25,"totalAmountIncludingTax":1259.25,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:01.553Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0OzRlR2sxeGlWa1BxaWp4UHVvUVQrREhmNWJvVHFMSHNPcnR0TldQdnVjY3c9MTswMDsn\"","id":"1efb23bd-a737-4536-902c-decf2b0462d9","number":"103330","externalDocumentNumber":"","invoiceDate":"2018-10-21","dueDate":"2018-10-21","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":20757,"totalTaxAmount":3113.55,"totalAmountIncludingTax":23870.55,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:57.64Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O1dKZlc4RlN2OUNiY3FKOGIxK2VwbFZ2K01jWUxBTzRLc05VUmFlYlpEU289MTswMDsn\"","id":"08a7d68d-ad70-4c11-b8e2-df09bfe01e0d","number":"103316","externalDocumentNumber":"","invoiceDate":"2018-09-20","dueDate":"2018-09-20","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":2910,"totalTaxAmount":436.5,"totalAmountIncludingTax":3346.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:55.43Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O2hFbVdMdzF4eU9PRmllNjJoTVZrcFJzYW1OOTNIa2cxd0hUSVZZZEg2UEE9MTswMDsn\"","id":"6765e078-56aa-4b87-a646-df1bcb3f8e8d","number":"103280","externalDocumentNumber":"","invoiceDate":"2018-06-23","dueDate":"2018-06-23","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":24863,"totalTaxAmount":0,"totalAmountIncludingTax":24863,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:49.947Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O21qRFN3ZDloQUdSRUlHUXBkQlYyMk1CMFZnSjJMaDhKeCtMTmRsTXo2Sm89MTswMDsn\"","id":"7c0764f8-f787-43f7-84e0-df5a1900fcee","number":"103238","externalDocumentNumber":"","invoiceDate":"2018-03-21","dueDate":"2018-03-21","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":32082,"totalTaxAmount":4812.3,"totalAmountIncludingTax":36894.3,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:43.197Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O0o3L0F0bjVkREdhUmMycWhzK1JSRk1TN3JGbzFvVmVpb25wYVNmOEttcUE9MTswMDsn\"","id":"7368d4d6-9e6d-4450-9d66-dfe446a35a69","number":"103214","externalDocumentNumber":"","invoiceDate":"2018-01-24","dueDate":"2018-01-24","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":728,"totalTaxAmount":0,"totalAmountIncludingTax":728,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:39.483Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O0Q2REsxR2NvVi9JYy94SXc5YXJNUGVreDh0ZnpXR0ZDTkQ1U3NaUHNhRUU9MTswMDsn\"","id":"74a06db3-5c2e-4f24-a536-e0dcc123665b","number":"103297","externalDocumentNumber":"","invoiceDate":"2018-08-01","dueDate":"2018-08-01","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":2165,"totalTaxAmount":0,"totalAmountIncludingTax":2165,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:52.557Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O3Z3eldHcDlBY3EvcnJzZzNlSDhsL0RVVG8ybC95dXVYS1VNd2JQQ2cyeW89MTswMDsn\"","id":"475d942f-b367-4ac4-b24d-e1a68c39e6f6","number":"103362","externalDocumentNumber":"","invoiceDate":"2018-12-31","dueDate":"2018-12-31","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5286,"totalTaxAmount":792.9,"totalAmountIncludingTax":6078.9,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:02.84Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0OzdBeTRWK1BNOFYrOUMzYWovTUdjVXZYUGhLc2E5ZkpRVGdPeXIzSzlZeUk9MTswMDsn\"","id":"dbe3302c-e88b-4cc1-9ab1-e1af098bf2e0","number":"103207","externalDocumentNumber":"","invoiceDate":"2018-01-17","dueDate":"2018-01-17","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:38.423Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O0pDejJrdmU2N0QyU21GUGNYMnYxdXd3elRXaXA3WGFuS2xNeEc2TE9jVDg9MTswMDsn\"","id":"d66afdd4-acdb-4af7-b094-e2e442bfbdba","number":"103314","externalDocumentNumber":"","invoiceDate":"2018-09-18","dueDate":"2018-09-18","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":360,"totalTaxAmount":54,"totalAmountIncludingTax":414,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:55.01Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0OzRtbkYwcTR0WkZZZHhTQmhVdXU0d0RFUWlhWGpuMVZwYW1CM1hnWGphclU9MTswMDsn\"","id":"df042d99-fe0c-47e9-bda3-e839b4966b93","number":"103394","externalDocumentNumber":"","invoiceDate":"2019-03-20","dueDate":"2019-03-20","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:07.777Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O092TFpBT3A1dU1ycTBaMG5PblY4aE5FTEpIMi9XZmxoQ1BIK3A0VjdRcDA9MTswMDsn\"","id":"7c174329-bac4-4b1e-ac0d-e8c252560e18","number":"103321","externalDocumentNumber":"","invoiceDate":"2018-09-26","dueDate":"2018-09-26","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3545,"totalTaxAmount":531.75,"totalAmountIncludingTax":4076.75,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:56.307Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O2dDS1VxQWd2THpFbElaWlQ4VnNjTmFlTkl0RDVKQjJhdW9xTjEyMnZvY2s9MTswMDsn\"","id":"9071f143-f59c-4ef9-9fd9-ea6afad6cf72","number":"103356","externalDocumentNumber":"","invoiceDate":"2018-12-23","dueDate":"2018-12-23","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1640,"totalTaxAmount":246,"totalAmountIncludingTax":1886,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:01.853Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O3oyQ0kvMGJ0QUx1bDZqZ3ljMUpDVjBra2w1c1RlQzllUTlLbHhZYncrenM9MTswMDsn\"","id":"f65f74d4-398a-44f4-b93b-ed7e0f1b7582","number":"103361","externalDocumentNumber":"","invoiceDate":"2018-12-27","dueDate":"2018-12-27","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1450,"totalTaxAmount":217.5,"totalAmountIncludingTax":1667.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:02.697Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O1pMM3ljdkxTZWMwUS9CU1o5RnVpRy9XL1dSa2dNalA5bER1ZUo3NFVZc2M9MTswMDsn\"","id":"eb4117c1-b295-46a3-87fd-ed8751eda2d8","number":"103350","externalDocumentNumber":"","invoiceDate":"2018-12-16","dueDate":"2018-12-16","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":573,"totalTaxAmount":85.95,"totalAmountIncludingTax":658.95,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:00.963Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O1RHZkQ0SnBOQzIxUWM5eGhmRWNuYWc3UTM5UUgyenZ1V1hrSnR1cmlLVXc9MTswMDsn\"","id":"52ffcd76-e6c5-47ce-9727-ee166c29e430","number":"103401","externalDocumentNumber":"","invoiceDate":"2019-03-27","dueDate":"2019-04-30","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":35264,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":35264,"totalTaxAmount":0,"totalAmountIncludingTax":35264,"status":"Open","lastModifiedDateTime":"2019-06-24T17:56:08.967Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O0kwSUYrR0lqU3EySmxZdGU0SXlIQm50b2Q0a05OTE1GQlZHQ0s0NEhtcGM9MTswMDsn\"","id":"6fdf843d-b44b-4162-bdca-efa203b3d165","number":"103219","externalDocumentNumber":"","invoiceDate":"2018-02-01","dueDate":"2018-02-01","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":2165,"totalTaxAmount":0,"totalAmountIncludingTax":2165,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:40.343Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O1ZPSFJUeU95RnFxMFMxTXNuQmsyVnV5WGxWNlZaNkZWQnZVMitSSUtRVmc9MTswMDsn\"","id":"f7816bad-1819-4e6a-a188-f0e5e68550da","number":"103252","externalDocumentNumber":"","invoiceDate":"2018-04-22","dueDate":"2018-04-22","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":9445,"totalTaxAmount":0,"totalAmountIncludingTax":9445,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:45.43Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O0F6dGxYWGR6M2tiNGlCMy9pR0VYUkxqRzJaSlNMRGE0RFNFY3hvYmFaQ2c9MTswMDsn\"","id":"c985ccbf-a07b-4dd4-a393-f123eba7757d","number":"103309","externalDocumentNumber":"","invoiceDate":"2018-08-27","dueDate":"2018-08-27","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":24762,"totalTaxAmount":0,"totalAmountIncludingTax":24762,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:54.31Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O3dseVJSUWlJTDRUL0R5MXhYMWRBdnlkK1hiSmxtb0VrM2xJK1F3c0o0ajg9MTswMDsn\"","id":"dfe76324-c6e0-4918-b019-f17b3aa4dfb4","number":"103231","externalDocumentNumber":"","invoiceDate":"2018-02-28","dueDate":"2018-02-28","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3910,"totalTaxAmount":586.5,"totalAmountIncludingTax":4496.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:42.227Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O0FSWXAycEtTL1ozK1NOM093WWl5NklXcDlmV09CM2xVVWpIOHlwdzI4VzQ9MTswMDsn\"","id":"eb88ddd2-d06d-425e-8d0b-f2f2547ff7e6","number":"103368","externalDocumentNumber":"","invoiceDate":"2019-01-20","dueDate":"2019-01-20","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:03.607Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O1BlZ1NEQWNTMFJOSHY0aWgrSUhZRS9qTno1ckQzVHBBeTZSS0VnOFQ3MTg9MTswMDsn\"","id":"718eecae-7ba6-497e-962a-f331a232d0ca","number":"103276","externalDocumentNumber":"","invoiceDate":"2018-06-20","dueDate":"2018-06-20","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4360,"totalTaxAmount":654,"totalAmountIncludingTax":5014,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:49.217Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O0J5SkJNTkNlUkxhVkRxUjVaWDZ3RXBtNlZPK0NrK3RueUFQVHpZT0lnRUU9MTswMDsn\"","id":"ef3e2f65-a072-428a-9469-f36fbc766295","number":"103328","externalDocumentNumber":"","invoiceDate":"2018-10-20","dueDate":"2018-10-20","customerPurchaseOrderReference":"","customerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","contactId":"","customerNumber":"40000","customerName":"Alpine Ski House","billToName":"Alpine Ski House","billToCustomerId":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","billToCustomerNumber":"40000","shipToName":"Alpine Ski House","shipToContact":"Ian Deberry","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":730,"totalTaxAmount":0,"totalAmountIncludingTax":730,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:57.263Z","phoneNumber":"","email":"ian.deberry@contoso.com","sellingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"billingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"shippingPostalAddress":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0OzBoU2ZjcmZ0NGFtSjJ3Slp6emp3dHdsdW56TnlSanp0bVF5ZjBXVS83R0U9MTswMDsn\"","id":"8c4d5a95-4a02-4f7d-8af9-f4bb0c2d902d","number":"103365","externalDocumentNumber":"","invoiceDate":"2019-01-17","dueDate":"2019-01-17","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1460,"totalTaxAmount":219,"totalAmountIncludingTax":1679,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:03.227Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O25EL1ZjWFp2UEN5L0pnc0hrejFQY0dQWDZicUJkanVoeTF0Tk5tWTZPaTg9MTswMDsn\"","id":"c2ed0c15-6001-4b02-a3a5-f562b759db87","number":"103201","externalDocumentNumber":"","invoiceDate":"2019-04-03","dueDate":"2019-05-31","customerPurchaseOrderReference":"OPEN","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":2176.95,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":1893,"totalTaxAmount":283.95,"totalAmountIncludingTax":2176.95,"status":"Draft","lastModifiedDateTime":"2019-06-28T03:22:50.347Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O1ZWdE5raHNlYXFPeFRjc0dxRzV4VHIwQnl1NG92Mkl6eGhTVzNSbVRrSVk9MTswMDsn\"","id":"3494a872-3f5c-41bd-98f3-f5eb7f1c7dc3","number":"103254","externalDocumentNumber":"","invoiceDate":"2018-04-23","dueDate":"2018-04-23","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":26756,"totalTaxAmount":0,"totalAmountIncludingTax":26756,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:45.813Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O1FSWThlUHQ0Ym9NNWRsZW03SHRUZ1FHakxxUTk0NjNYR2pXWW9tNGM0d0k9MTswMDsn\"","id":"18aafe3c-247d-467b-87cb-f7d3a7539879","number":"103224","externalDocumentNumber":"","invoiceDate":"2018-02-19","dueDate":"2018-02-19","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":4730,"totalTaxAmount":709.5,"totalAmountIncludingTax":5439.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:41.023Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O3FvMSt6N3BxRThVNWtuZGNxUW4rNFBLYVBhQUZWdmUyeXl1MDRxcTBsVkE9MTswMDsn\"","id":"f91885a7-0675-499a-9cdb-f913973e9896","number":"103342","externalDocumentNumber":"","invoiceDate":"2018-11-20","dueDate":"2018-11-20","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":3275,"totalTaxAmount":491.25,"totalAmountIncludingTax":3766.25,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:59.617Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0OzNENWh0L3BXS3RsYWtTNkRJanZBaWtUdmlESnB4d25FV2pHQUZPc3BmdkU9MTswMDsn\"","id":"97beb748-3291-47d5-a56e-fa0f474502f3","number":"103395","externalDocumentNumber":"","invoiceDate":"2019-03-21","dueDate":"2019-03-21","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5820,"totalTaxAmount":873,"totalAmountIncludingTax":6693,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:07.953Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0OzZ0dTFZeDF3VDQ1U1laTHhNTlB3QmUzM0xocGdEOThIK3J1bGEzdkxicVE9MTswMDsn\"","id":"66bb24cc-468d-486c-b4f6-fa7f79e668f4","number":"103264","externalDocumentNumber":"","invoiceDate":"2018-05-21","dueDate":"2018-05-21","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":29439,"totalTaxAmount":4415.85,"totalAmountIncludingTax":33854.85,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:47.28Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O2YrKzU5ejF1T0FsT0lRank0T2lUOWVTRlA3OTl1Wkg1b0l5VmtOdkU4QVE9MTswMDsn\"","id":"3178cbbd-a374-4b5d-84cb-faa3db34e4bc","number":"103255","externalDocumentNumber":"","invoiceDate":"2018-04-26","dueDate":"2018-04-26","customerPurchaseOrderReference":"","customerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","contactId":"","customerNumber":"50000","customerName":"Relecloud","billToName":"Relecloud","billToCustomerId":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","billToCustomerNumber":"50000","shipToName":"Relecloud","shipToContact":"Mason Kingsley","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":5135,"totalTaxAmount":770.25,"totalAmountIncludingTax":5905.25,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:45.993Z","phoneNumber":"","email":"mason.kingsley@contoso.com","sellingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"billingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"shippingPostalAddress":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}},{"@odata.etag":"W/\"JzQ0O0N4MUIzS1JSbms0eFdHS2o4YkhHeVQ1Tm81clY2c1k0R3lYWUZRZEdaY2s9MTswMDsn\"","id":"f72228b7-36df-4b99-af2f-fb6ea1bffa67","number":"103242","externalDocumentNumber":"","invoiceDate":"2018-03-26","dueDate":"2018-03-26","customerPurchaseOrderReference":"","customerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","contactId":"","customerNumber":"20000","customerName":"Trey Research","billToName":"Trey Research","billToCustomerId":"8790f0e2-28b8-408c-b62a-570ab255edd7","billToCustomerNumber":"20000","shipToName":"Trey Research","shipToContact":"Mary Kumm","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":2190,"totalTaxAmount":328.5,"totalAmountIncludingTax":2518.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:43.79Z","phoneNumber":"","email":"mary.kumm@contoso.com","sellingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"billingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"shippingPostalAddress":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0O0dVbzVCWmhaS2V3bFJPSU4xcVFsU1lYYmt3ZU9STDZBcG53Q2lGMFFOR0E9MTswMDsn\"","id":"c44d0b5e-e40a-4ef7-ab56-fc6e988724d3","number":"103375","externalDocumentNumber":"","invoiceDate":"2019-01-27","dueDate":"2019-02-28","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":20226,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":20226,"totalTaxAmount":0,"totalAmountIncludingTax":20226,"status":"Open","lastModifiedDateTime":"2019-06-24T17:56:04.817Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O1M5NjFwM1RXYlovc3VESnJwVUF5RmN2OHoyWFN2SE1sampYVEtORXEyTzA9MTswMDsn\"","id":"7f6ad84d-2f59-4a69-a936-fccbf8ef89f2","number":"103341","externalDocumentNumber":"","invoiceDate":"2018-11-19","dueDate":"2018-11-19","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":19959,"totalTaxAmount":2993.85,"totalAmountIncludingTax":22952.85,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:59.407Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O0J2UjhGdytiV0ZjUUtIaTdqcHpqdERHV3RVRVlxVE1Icm92bU5BRjdRSzg9MTswMDsn\"","id":"3b662963-a20b-4fcd-8e6a-fe953a922e54","number":"103222","externalDocumentNumber":"","invoiceDate":"2018-02-17","dueDate":"2018-02-17","customerPurchaseOrderReference":"","customerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","contactId":"","customerNumber":"30000","customerName":"School of Fine Art","billToName":"School of Fine Art","billToCustomerId":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","billToCustomerNumber":"30000","shipToName":"School of Fine Art","shipToContact":"Meagan Bond","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":365,"totalTaxAmount":0,"totalAmountIncludingTax":365,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:55:40.713Z","phoneNumber":"","email":"meagan.bond@contoso.com","sellingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"billingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"shippingPostalAddress":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O2FXZDBES29Kdi8yVS9TR2xqZTVGWkxFb0Z0QTYzbVRTZTE0NmdaMmx1djQ9MTswMDsn\"","id":"75cb2881-7610-4065-8d59-ff4af8f08b06","number":"103370","externalDocumentNumber":"","invoiceDate":"2019-01-21","dueDate":"2019-01-21","customerPurchaseOrderReference":"","customerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","contactId":"","customerNumber":"10000","customerName":"Adatum Corporation","billToName":"Adatum Corporation","billToCustomerId":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","billToCustomerNumber":"10000","shipToName":"Adatum Corporation","shipToContact":"Anthony Lording","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","orderId":"00000000-0000-0000-0000-000000000000","orderNumber":"","paymentTermsId":"2036f67c-46e8-4fc6-b91a-533cc711bb6d","shipmentMethodId":"00000000-0000-0000-0000-000000000000","salesperson":"PS","pricesIncludeTax":false,"remainingAmount":0,"discountAmount":0,"discountAppliedBeforeTax":true,"totalAmountExcludingTax":22650,"totalTaxAmount":3397.5,"totalAmountIncludingTax":26047.5,"status":"Paid","lastModifiedDateTime":"2019-06-24T17:56:03.98Z","phoneNumber":"","email":"anthony.lording@contoso.com","sellingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"billingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"shippingPostalAddress":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}}]}