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,40 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::SalesInvoiceTest < Test::Unit::TestCase
4
+ test "should initialize the object" do
5
+ sales_invoice = BusinessCentral::SalesInvoice.new(bc_client)
6
+ assert_not_nil sales_invoice
7
+ end
8
+
9
+ test "should return a salesInvoice" do
10
+ stub_get("salesInvoices(1234)").
11
+ with(headers: stub_headers).
12
+ to_return(status: 200, body: fixture("get_salesInvoice_200.json"))
13
+
14
+ invoice = BusinessCentral::SalesInvoice.new(bc_client).get("1234")
15
+ assert_equal "Alpine Ski House", invoice.customerName
16
+ end
17
+
18
+ test "should create a salesInvoice" do
19
+ stub_post("salesInvoices").
20
+ with(headers: stub_headers).
21
+ to_return(status: 200, body: fixture("post_salesInvoice_200.json"))
22
+
23
+ invoice = BusinessCentral::SalesInvoice.new(bc_client).create(new_invoice)
24
+
25
+ assert_equal "aa4426d0-a7d3-4272-be0d-bfe1fa642094", invoice.id
26
+ assert_equal "103404", invoice.number
27
+ assert_equal "Updated Customer Name", invoice.customerName
28
+ assert_equal "9e846824-c73a-4649-b827-138b941781c2", invoice.paymentTermsId
29
+ end
30
+
31
+ def new_invoice
32
+ {
33
+ "number": "103404",
34
+ "invoiceDate": "2019-07-01",
35
+ "customerNumber": "3459",
36
+ "currencyCode": "AUD",
37
+ "paymentTermsId": "1fcb773e-f9f9-4e3b-b827-28e25ecb8dbc"
38
+ }
39
+ end
40
+ end
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::SalesOrderLineTest < Test::Unit::TestCase
4
+ def test_initialize
5
+ api = BusinessCentral::SalesOrderLine.new(bc_client)
6
+ assert_not_nil api
7
+ end
8
+ end
@@ -0,0 +1,32 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::SalesOrderTest < Test::Unit::TestCase
4
+ def test_method_missing_only_supports_methods_in_array
5
+ api_salesOrder = BusinessCentral::SalesOrder.new(bc_client)
6
+ assert_not_nil api_salesOrder
7
+
8
+ assert_equal "foo is not supported", api_salesOrder.foo
9
+ end
10
+
11
+ def test_get_collection
12
+ stub_get("salesOrders").
13
+ with(headers: stub_headers).
14
+ to_return(status: 200, body: fixture("get_salesOrders_200.json"))
15
+
16
+ api_salesOrder = BusinessCentral::SalesOrder.new(bc_client)
17
+ sales_orders = api_salesOrder.get
18
+
19
+ assert sales_orders.is_a?(Array)
20
+ end
21
+
22
+ def test_get_with_id
23
+ stub_get("salesOrders(1234)").
24
+ with(headers: stub_headers).
25
+ to_return(status: 200, body: fixture("get_salesOrder_200.json"))
26
+
27
+ api_salesOrder = BusinessCentral::SalesOrder.new(bc_client)
28
+ sales_order = api_salesOrder.get(1234)
29
+
30
+ assert_equal "101001", sales_order.number
31
+ end
32
+ end
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::SalesQuoteLineTest < Test::Unit::TestCase
4
+ def test_initialize
5
+ api = BusinessCentral::SalesQuoteLine.new(bc_client)
6
+ assert_not_nil api
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::SalesQuoteTest < Test::Unit::TestCase
4
+ def test_initialize
5
+ sales_quote = BusinessCentral::SalesQuote.new(bc_client)
6
+ assert_not_nil sales_quote
7
+ end
8
+ end
@@ -0,0 +1,19 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::ShipmentMethodTest < Test::Unit::TestCase
4
+ def test_initialize
5
+ shipment_method = BusinessCentral::ShipmentMethod.new(bc_client)
6
+ assert_not_nil shipment_method
7
+ end
8
+
9
+ test "should return a list of shipmentMethods" do
10
+ stub_get("shipmentMethods").
11
+ with(headers: stub_headers).
12
+ to_return(status: 200,
13
+ body: fixture("get_shipmentMethods_200.json"))
14
+
15
+ shipmentMethods = BusinessCentral::ShipmentMethod.new(bc_client).get()
16
+ assert shipmentMethods.length > 1
17
+ assert_equal "DELIVERY", shipmentMethods.first.displayName
18
+ end
19
+ end
File without changes
@@ -0,0 +1,19 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::TaxAreaTest < Test::Unit::TestCase
4
+ def test_initialize
5
+ tax_area = BusinessCentral::TaxArea.new(bc_client)
6
+ assert_not_nil tax_area
7
+ end
8
+
9
+ test "should return a list of taxAreas" do
10
+ stub_get("taxAreas").
11
+ with(headers: stub_headers).
12
+ to_return(status: 200,
13
+ body: fixture("get_taxAreas_200.json"))
14
+
15
+ taxAreas = BusinessCentral::TaxArea.new(bc_client).get()
16
+ assert taxAreas.length > 1
17
+ assert_equal "INTERCO", taxAreas.first.code
18
+ end
19
+ end
@@ -0,0 +1,19 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::TaxGroupTest < Test::Unit::TestCase
4
+ def test_initialize
5
+ tax_group = BusinessCentral::TaxGroup.new(bc_client)
6
+ assert_not_nil tax_group
7
+ end
8
+
9
+ test "should return a list of taxGroups" do
10
+ stub_get("taxGroups").
11
+ with(headers: stub_headers).
12
+ to_return(status: 200,
13
+ body: fixture("get_taxGroups_200.json"))
14
+
15
+ taxGroups = BusinessCentral::TaxGroup.new(bc_client).get()
16
+ assert taxGroups.length > 1
17
+ assert_equal "NO GST", taxGroups.first.code
18
+ end
19
+ end
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::TrialBalanceTest < Test::Unit::TestCase
4
+ def test_initialize
5
+ api = BusinessCentral::TrialBalance.new(bc_client)
6
+ assert_not_nil api
7
+ end
8
+ end
@@ -0,0 +1,19 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::UnitOfMeasureTest < Test::Unit::TestCase
4
+ def test_initialize
5
+ unit = BusinessCentral::UnitOfMeasure.new(bc_client)
6
+ assert_not_nil unit
7
+ end
8
+
9
+ test "should get all unitsOfMeasure" do
10
+ stub_get("unitsOfMeasure").
11
+ with(headers: stub_headers).
12
+ to_return(status: 200,
13
+ body: fixture("get_unitsOfMeasure_200.json"))
14
+
15
+ unitsOfMeasure = BusinessCentral::UnitOfMeasure.new(bc_client).get()
16
+ assert unitsOfMeasure.length > 1
17
+ assert_equal "Box", unitsOfMeasure.first.displayName
18
+ end
19
+ end
@@ -0,0 +1,19 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::URLBuilderTest < Test::Unit::TestCase
4
+ def test_initialize
5
+ @builder = BusinessCentral::URLBuilder.new("FOO", "1234", { })
6
+ assert_not_nil @builder
7
+ end
8
+
9
+ def test_build_path_with_parent
10
+ @builder = BusinessCentral::URLBuilder.new("FOO", "1234", { })
11
+ assert_equal "/FOO(1234)", @builder.url
12
+ end
13
+
14
+ def test_build_with_child
15
+ @builder = BusinessCentral::URLBuilder.
16
+ new("FOO", "1234", { child_path: "BAR", child_id: "4321-10000"})
17
+ assert_equal "/FOO(1234)/BAR(4321-10000)", @builder.url
18
+ end
19
+ end
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::VendorPurchaseTest < Test::Unit::TestCase
4
+ def test_initialize
5
+ vendorPurchase = BusinessCentral::VendorPurchase.new(bc_client)
6
+ assert_not_nil vendorPurchase
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::VendorTest < Test::Unit::TestCase
4
+ def test_initialize
5
+ vendor = BusinessCentral::Vendor.new(bc_client)
6
+ assert_not_nil vendor
7
+ end
8
+ end
@@ -0,0 +1,72 @@
1
+ require 'test_helper'
2
+
3
+ class BusinessCentral::ClientTest < Test::Unit::TestCase
4
+ PATH = "https://api.businesscentral.dynamics.com/v1.0/cronos.com/api/v1.0"
5
+
6
+ def test_initialize
7
+ client = bc_client
8
+
9
+ assert_not_nil client
10
+ assert_equal "cronos.com", client.api_tenant
11
+ assert_equal "foo", client.api_username
12
+ assert_equal "bar", client.api_password
13
+ end
14
+
15
+ def test_base_url
16
+ client = bc_client
17
+
18
+ assert_equal "#{PATH}", client.base_url
19
+ end
20
+
21
+ def test_base_url_with_company_id
22
+ client = BusinessCentral::Client.new({
23
+ api_tenant: "cronos.com",
24
+ api_username: "username",
25
+ api_password: "password",
26
+ api_host: "https://api.businesscentral.dynamics.com",
27
+ test_mode: true,
28
+ api_company_id: "123456789",
29
+ api_version: "/v1.0",
30
+ api_path: "/api/v1.0"
31
+ })
32
+
33
+ assert_equal "#{PATH}/companies(123456789)", client.base_url
34
+ assert_equal "cronos.com", client.api_tenant
35
+ assert_equal "username", client.api_username
36
+ assert_equal "password", client.api_password
37
+ assert_equal "123456789", client.api_company_id
38
+ assert_equal "/v1.0", client.api_version
39
+ assert_equal "/api/v1.0", client.api_path
40
+ end
41
+
42
+ test "should perform a get request" do
43
+ client = bc_client
44
+
45
+ client.expects(:perform_request).at_least_once
46
+ client.get("/customers")
47
+ end
48
+
49
+ test "should perform a post request" do
50
+ client = bc_client
51
+
52
+ client.expects(:perform_request).at_least_once
53
+ client.expects(:build_request).at_least_once
54
+ client.post("/customers", { displayName: "FooBar" })
55
+ end
56
+
57
+ test "should perform a patch request" do
58
+ client = bc_client
59
+
60
+ client.expects(:perform_request).at_least_once
61
+ client.expects(:build_request).at_least_once
62
+ client.patch("/customers(1234)", "etag", { displayName: "FooBar" })
63
+ end
64
+
65
+ test "should perform a delete request" do
66
+ client = bc_client
67
+
68
+ client.expects(:perform_request).at_least_once
69
+ client.expects(:build_request).at_least_once
70
+ client.delete("/customers(1234)", "etag")
71
+ end
72
+ end
@@ -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)/customers","value":[{"@odata.etag":"W/\"JzQ0O1FQazdEcnhqUVR3VVloN2lDaDZQaXRLM0tkSStKYzVJUERvMzBMUE04b0U9MTswMDsn\"","id":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","number":"30000","displayName":"School of Fine Art","type":"Company","phoneNumber":"","email":"meagan.bond@contoso.com","website":"","taxLiable":false,"taxAreaId":"3e8ab4f9-113d-4734-96ff-969bd7a3f313","taxAreaDisplayName":"Other customers and vendors (not MISC)","taxRegistrationNumber":"733495789","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","paymentMethodId":"00000000-0000-0000-0000-000000000000","blocked":" ","lastModifiedDateTime":"2019-06-24T17:53:17.587Z","address":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"customerFinancialDetails":[{"@odata.etag":"W/\"JzQ0OzUrVklhaEt3QkJUUTdJS3JuZXY5bFJoQVREU25ROVZObjdrMzRQUXQ1ZGs9MTswMDsn\"","id":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","number":"30000","balance":95193,"totalSalesExcludingTax":415914,"overdueAmount":95193}]},{"@odata.etag":"W/\"JzQ0O0pxY0M3bHltSlcyQlhVU2p3S3ZGMnZEZ2lDRjlyRVEwY04xNUhyYTAwU1E9MTswMDsn\"","id":"8790f0e2-28b8-408c-b62a-570ab255edd7","number":"20000","displayName":"Trey Research","type":"Company","phoneNumber":"","email":"mary.kumm@contoso.com","website":"","taxLiable":false,"taxAreaId":"5e96b48b-e330-4091-9146-e823ebac7e44","taxAreaDisplayName":"Domestic customers and vendors","taxRegistrationNumber":"254687456","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","paymentMethodId":"00000000-0000-0000-0000-000000000000","blocked":" ","lastModifiedDateTime":"2019-06-24T17:53:17.517Z","address":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"},"customerFinancialDetails":[{"@odata.etag":"W/\"JzQ0OytUR1FuZ2tlWEJYOGlPeUJ1b0VNeEdRdXk4cDU1RDRuUWNZV0JpV3BnWmM9MTswMDsn\"","id":"8790f0e2-28b8-408c-b62a-570ab255edd7","number":"20000","balance":6296.25,"totalSalesExcludingTax":92567,"overdueAmount":6296.25}]},{"@odata.etag":"W/\"JzQ0OzFoRjFJWXBrenJITHFHTk95RFkrOFVlYWFuZDZzWmpTV1lDWHhXd0VmRWc9MTswMDsn\"","id":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","number":"40000","displayName":"Alpine Ski House","type":"Company","phoneNumber":"","email":"ian.deberry@contoso.com","website":"","taxLiable":false,"taxAreaId":"3e8ab4f9-113d-4734-96ff-969bd7a3f313","taxAreaDisplayName":"Other customers and vendors (not MISC)","taxRegistrationNumber":"533435789","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","paymentMethodId":"00000000-0000-0000-0000-000000000000","blocked":" ","lastModifiedDateTime":"2019-06-24T17:53:17.67Z","address":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"},"customerFinancialDetails":[{"@odata.etag":"W/\"JzQ0O042ejhIT3UyREFxVHZYUVROdjg4YW9qUi8xMkFXWUZoWm9wd3Z2Z3dvRzA9MTswMDsn\"","id":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","number":"40000","balance":7635,"totalSalesExcludingTax":125491,"overdueAmount":7635}]},{"@odata.etag":"W/\"JzQ0O1FHdDhzWHpUaWxkU2pGNG5jd1c5dkRrY1JGSDhaMHIwVVB5MU1VMGdVUFE9MTswMDsn\"","id":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","number":"10000","displayName":"Adatum Corporation","type":"Company","phoneNumber":"","email":"anthony.lording@contoso.com","website":"","taxLiable":false,"taxAreaId":"5e96b48b-e330-4091-9146-e823ebac7e44","taxAreaDisplayName":"Domestic customers and vendors","taxRegistrationNumber":"789456278","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","paymentMethodId":"00000000-0000-0000-0000-000000000000","blocked":" ","lastModifiedDateTime":"2019-06-24T17:53:17.447Z","address":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"},"customerFinancialDetails":[{"@odata.etag":"W/\"JzQ0OzVFejNNY3RsNVdKM2RqNHdpU2VZczBmYkxlT3JMMHYrWVZrTHVHbzdBV0k9MTswMDsn\"","id":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","number":"10000","balance":0,"totalSalesExcludingTax":405827,"overdueAmount":0}]},{"@odata.etag":"W/\"JzQ0O29DYWJUcWlKaUZVdCthK2tXbGRMbnZBcGRSOHQ4ck9icjViNFNZemdZc3c9MTswMDsn\"","id":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","number":"50000","displayName":"Relecloud","type":"Company","phoneNumber":"","email":"mason.kingsley@contoso.com","website":"","taxLiable":false,"taxAreaId":"5e96b48b-e330-4091-9146-e823ebac7e44","taxAreaDisplayName":"Domestic customers and vendors","taxRegistrationNumber":"582048936","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","paymentMethodId":"00000000-0000-0000-0000-000000000000","blocked":" ","lastModifiedDateTime":"2019-06-24T17:53:17.743Z","address":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"},"customerFinancialDetails":[{"@odata.etag":"W/\"JzQ0O25DcjdJREZDQ0x6VEZ0enF5RGNZMmdCRVg2aEFrQ2NRcVRkbjZHNjIrV2M9MTswMDsn\"","id":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","number":"50000","balance":18135.5,"totalSalesExcludingTax":158805,"overdueAmount":18135.5}]}]}
@@ -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)/accounts/$entity","@odata.etag":"W/\"JzQ0O0poME1XU2IwSkp2cE1xcTF2bUlZRzhkRC9SQkNQbnNQZUNZajU5QXFYTlk9MTswMDsn\"","id":"d506f7a0-0b93-48e2-90ff-02b558db631b","number":"8820","displayName":"Depreciation, Equipment","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.447Z"}
@@ -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)/accounts","value":[{"@odata.etag":"W/\"JzQ0O0poME1XU2IwSkp2cE1xcTF2bUlZRzhkRC9SQkNQbnNQZUNZajU5QXFYTlk9MTswMDsn\"","id":"d506f7a0-0b93-48e2-90ff-02b558db631b","number":"8820","displayName":"Depreciation, Equipment","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.447Z"},{"@odata.etag":"W/\"JzQ0O2dJSjJ3aFc0NURoSjh5bnJtUEF1Vkk5akVxbDNqNU9QaFlRUW50RXJsWVU9MTswMDsn\"","id":"cb07c9de-40f8-4863-81c2-04040f51821a","number":"8630","displayName":"Legal and Accounting Services","category":"Expense","subCategory":"Other Income & Expenses","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.17Z"},{"@odata.etag":"W/\"JzQ0O0pRRTVRc2luRnhqeExVT3BWWC8vVEtMK1RtY0xUSmx5clZkYVJSSGZ6RFE9MTswMDsn\"","id":"c362a02d-1ce1-4f47-b59e-0c2dc7aa5b80","number":"6710","displayName":"Consulting Fees - Dom.","category":"Income","subCategory":"Income, Services","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.79Z"},{"@odata.etag":"W/\"JzQ0O1BTV1FQSGxJRjVNRVd1MlBncnc5YzJNWU10QzFxcFZpczlEYmt3Y0gwdm89MTswMDsn\"","id":"83cfa3a6-a519-4b4b-81f9-0dd60fdf9cbb","number":"2910","displayName":"Cash","category":"Assets","subCategory":"Cash","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:12.737Z"},{"@odata.etag":"W/\"JzQ0OzBtazhpdzFrSlRrRCt5ZXg4OXgvb05EMzkzdGlIWHhaQWswdlNXMk5PWVE9MTswMDsn\"","id":"59177a81-3515-4c54-89ff-0e5d851ec99d","number":"5110","displayName":"Long-term Bank Loans","category":"Liabilities","subCategory":"Long Term Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:13.137Z"},{"@odata.etag":"W/\"JzQ0O0V2ZEdybGc1azJxc3JXdUpibERMUHU2SnVZdmhEZHlBQWNXZ29qYXVVTU09MTswMDsn\"","id":"17862110-1004-4e03-9311-13fb123c0e90","number":"8740","displayName":"Annual Leave Expenses","category":"Expense","subCategory":"Payroll Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.343Z"},{"@odata.etag":"W/\"JzQ0O3ZLZHkwWHZxTUtHMmpjc3dYcTgzRndNYmp5ck9YVDNzcnl6bWJNWkFJdVU9MTswMDsn\"","id":"491cb923-d1e2-4f88-9dee-14af6ccbf31a","number":"6112","displayName":"Hire Income","category":"Income","subCategory":"Income, Product Sales","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.317Z"},{"@odata.etag":"W/\"JzQ0O242bHhLOXVBR1lueWF2c2ppY2k5SXpMWjQxUFR2OUxWYmVVdU1CQ2F3SUU9MTswMDsn\"","id":"81d334e9-bfbc-4794-aeb0-152fe9eabde2","number":"8810","displayName":"Depreciation, Buildings","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.43Z"},{"@odata.etag":"W/\"JzQ0OzVTRzV2SG80ZGdvRXJsYURRWmRPVlUydEtTSFR2dVhNSHBxZm5wNzlwcnc9MTswMDsn\"","id":"8d9f0d42-ec45-496f-9b89-161f6524e5b1","number":"5910","displayName":"Dividends for the Fiscal Year","category":"Liabilities","subCategory":"Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.07Z"},{"@odata.etag":"W/\"JzQ0O1JPZ2pDQStkb0p3cUtYTHdEeUVYN2lxNXJqOEFiN1kwRzRnS3k4ckdibVk9MTswMDsn\"","id":"ddcde252-cb87-408f-99b1-178111d0eee7","number":"8120","displayName":"Electricity and Heating","category":"Expense","subCategory":"Utilities Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.597Z"},{"@odata.etag":"W/\"JzQ0O1l6UHp2Z3BJc3hoRHFicmhRR0dOUXYvRUJPUm1yT3VEa2VDd1l6WCtoRUk9MTswMDsn\"","id":"9f20c228-f5d2-49ab-9826-1e31af00ba6c","number":"8110","displayName":"Cleaning","category":"Expense","subCategory":"Utilities Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.577Z"},{"@odata.etag":"W/\"JzQ0OzlXSnFEQUFhbzNxSStjZWZUSWZySkR3S25GZk1SV0F0a1VNRnZJcEFTN1k9MTswMDsn\"","id":"df3edbdf-0780-4838-872f-1fb20b6cf33a","number":"5492","displayName":"WHT Prepaid","category":"Liabilities","subCategory":"Current Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:13.457Z"},{"@odata.etag":"W/\"JzQ0O1lLSExLSVpzMzJxUk9JTWhjc3FMTXJZa3dsT3IxWnpySmEwTHBpYmR4WlE9MTswMDsn\"","id":"539d4c52-e5d2-47c9-9587-22dd332cf699","number":"1320","displayName":"Increases during the Year","category":"Assets","subCategory":"Equipment","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:11.813Z"},{"@odata.etag":"W/\"JzQ0O01ML0JMT3k5RE9Dd3ZuMjJONlVQdHNybFpRZXRyWFZGM2FIWnBJRm4wTDg9MTswMDsn\"","id":"056e196e-1320-46f3-966c-24e3c02ae4d0","number":"5495","displayName":"WHT Rounding","category":"Liabilities","subCategory":"Current Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:13.517Z"},{"@odata.etag":"W/\"JzQ0O0ZTY0MwelNDL1AzWkdWNzJ2ZGszYzAwc1NHSkhDSVlXSm1UL2RLYkhJMVU9MTswMDsn\"","id":"f294f644-9801-45f8-8348-24ea213cebe0","number":"5810","displayName":"Withholding US Taxes Payable","category":"Liabilities","subCategory":"Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:13.92Z"},{"@odata.etag":"W/\"JzQ0O0lyYTQrQWtsNzgrT1pTKy9nZUc0eHFjMnkzUW1ZQlVVMloxUXh1Zit4bzA9MTswMDsn\"","id":"f833061b-0f7b-44b8-8f0a-286612703f11","number":"8520","displayName":"Registration Fees","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.043Z"},{"@odata.etag":"W/\"JzQ0O1U1SmptdlVUNFBGVFZJZWVFTmdRTXBXS0paMDFwZ0N4M2RaYXZSMmNwNkk9MTswMDsn\"","id":"0d2edf9c-3ace-4152-8b7b-2f4ab7a5c598","number":"8930","displayName":"Sales WHT Adjustments","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.573Z"},{"@odata.etag":"W/\"JzQ0O090cldDRnhSeWE1RDJYcER1NENNdGhiRkZHOWwrUHB0ekVQb0hzTzBkalk9MTswMDsn\"","id":"905c40dc-7fb0-4e69-854a-40231d6db344","number":"8210","displayName":"Office Supplies","category":"Expense","subCategory":"Utilities Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.683Z"},{"@odata.etag":"W/\"JzQ0O3E2bTdKamIyTWMzMWJTdlkyQ1RQRTNFWWhYa3ArR0NubWZEamtXZmdzdUk9MTswMDsn\"","id":"92db854f-9273-4807-ad53-4b637418a1d1","number":"8720","displayName":"Salaries","category":"Expense","subCategory":"Payroll Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.303Z"},{"@odata.etag":"W/\"JzQ0O2Y2UlNxYzMzbS92amVUZEI2UGFweXdyKzBSY3Vpb1JlVlFHQXdVSFJ1akE9MTswMDsn\"","id":"f51fffad-6d0c-4448-9222-507c164cddbb","number":"8320","displayName":"Consultant Services","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.81Z"},{"@odata.etag":"W/\"JzQ0O1VxcGFocW10azhpeDMrQTJLakpONnhwOWd4LzhETTE1NlhxUDNuQ1ZHVnM9MTswMDsn\"","id":"c6f1835a-96f6-4b65-8956-54f772decbe2","number":"6430","displayName":"Sales, Resources - Export","category":"Income","subCategory":"Income, Services","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.617Z"},{"@odata.etag":"W/\"JzQ0OyttVk1BbFZQWlB0dVM0eXhHY1N3czBSem9EVVU0VUxJS3R2Q0oxNWRWOVU9MTswMDsn\"","id":"515bffe9-1539-4091-ae32-55df29678a74","number":"5493","displayName":"WHT Payable","category":"Liabilities","subCategory":"Current Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:13.477Z"},{"@odata.etag":"W/\"JzQ0O2FTZEtsRnNNUTN2Z2gyRy85YXBhRTdsa1dRNzZSa05mWEYzYzhCWW8xMGM9MTswMDsn\"","id":"c2401902-13a9-4fcb-b80b-56f52a79ed3a","number":"8510","displayName":"Gasoline and Motor Oil","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.023Z"},{"@odata.etag":"W/\"JzQ0O3V2TnBNeTVKM3pSNWV6R0lGeWNZbEVVNDFYb3VYczBlUWE0amZ2dzZ5NGs9MTswMDsn\"","id":"e75b507c-cf27-4a71-9bee-57e5abf438ad","number":"8920","displayName":"Purchase WHT Adjustments","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.553Z"},{"@odata.etag":"W/\"JzQ0O0FhcWcySlF6L1NkNWFEZVNkelRFN2ZZdExBeXhRdDZZaHlmcDVlZTBDUXc9MTswMDsn\"","id":"43ed2329-7c85-4fec-a79a-5844e8badf43","number":"2340","displayName":"Other Receivables","category":"Assets","subCategory":"Accounts Receivable","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:12.497Z"},{"@odata.etag":"W/\"JzQ0O3VCaDBPT01rLytWZGwzSDVsRXhVREhxNTJMazMzUWpmajJwc3hCUDlBeFk9MTswMDsn\"","id":"ece140fb-21fa-4330-b91b-59194dc7425a","number":"8640","displayName":"Miscellaneous","category":"Expense","subCategory":"Other Income & Expenses","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.193Z"},{"@odata.etag":"W/\"JzQ0O1BuMUNQS0V3cWUxQ2pqV0Q4KytYc3FjSWVDWnVEUWZPK3pQU1Z3ZWxRWWs9MTswMDsn\"","id":"32ac0a64-5c8f-4195-a678-5b948073c8a9","number":"5920","displayName":"Corporate US Taxes Payable","category":"Liabilities","subCategory":"Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.09Z"},{"@odata.etag":"W/\"JzQ0O0lZUEdISlpoZDJ0NVRpeWxFcld6YitTM2RESTA0WDlVVVNabi9hMC9HZk09MTswMDsn\"","id":"bf994c19-2713-40bb-9f2a-5c33f7fe2780","number":"9230","displayName":"Mortgage Interest","category":"Expense","subCategory":"Interest Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.887Z"},{"@odata.etag":"W/\"JzQ0O3NzM3hBY3I5eXo3MyszaDQ1S2xWTXFZdWRMbHordEFDWjdnTUZHUUlsRU09MTswMDsn\"","id":"8892f83e-ea2d-43c3-9820-5d050c3fb351","number":"6130","displayName":"Sales, Retail - Export","category":"Income","subCategory":"Income, Product Sales","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.357Z"},{"@odata.etag":"W/\"JzQ0O3JNY2NKVWZqb0U1blpaQXRUbTVDQXdYYzZxSE9IcW5GcUxMbmVWWkVQRDA9MTswMDsn\"","id":"56e84a16-115d-4322-9438-5e3152db46d1","number":"7130","displayName":"Purch., Retail - Export","category":"Cost of Goods Sold","subCategory":"Materials","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.95Z"},{"@odata.etag":"W/\"JzQ0O1RCbTczcVpVYWh1WGdZUFNYMWhscGNuaVdHNkhwUXBWVUhXRkhLU09ZWkk9MTswMDsn\"","id":"92920a25-a439-45cb-9588-5e57a23fc108","number":"2810","displayName":"Bonds","category":"Assets","subCategory":"Assets","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:12.67Z"},{"@odata.etag":"W/\"JzQ0O1ovY0pUN0xEbm02b2NDMzNBcis4VHR5WFVZajY2UWlDTVB2cDA2SVNQeWc9MTswMDsn\"","id":"629c3d2c-9d67-4e2b-b08a-5e5c487e6335","number":"8130","displayName":"Repairs and Maintenance","category":"Expense","subCategory":"Utilities Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.62Z"},{"@odata.etag":"W/\"JzQ0O1VtaDQ4YUtCakhhNjVqVkUxRmcxcEhGdlcxV3dHZWRHMUpQcytqQjZFdEU9MTswMDsn\"","id":"b97ab4d4-21c4-438a-ab96-6213311b7515","number":"9420","displayName":"Extraordinary Expenses","category":"Expense","subCategory":"Other Income & Expenses","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:17.163Z"},{"@odata.etag":"W/\"JzQ0O05ZUzBIZVB0RlZ3YlBKd3RkSktEaERMcDVUSmlqRVo1TmpDaUxsSS9BL3c9MTswMDsn\"","id":"fdde4a9f-363d-4681-9a6b-6442142b72a6","number":"7490","displayName":"Cost of Resources Used","category":"Cost of Goods Sold","subCategory":"Labour","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.44Z"},{"@odata.etag":"W/\"JzQ0O2hEY3VJeE5LNDVVNEM3R1prdytDR0xXVWQwa0lLT2l4Kzk3K3RLWGwwOE09MTswMDsn\"","id":"5e64d0a7-a56c-4acc-8ab1-6b9fc9351584","number":"9410","displayName":"Extraordinary Income","category":"Income","subCategory":"Income","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:17.14Z"},{"@odata.etag":"W/\"JzQ0O1AwUU1UTTI3RjdsV3pjekdSd0NJb2w4MS9TekdZckp0MVdpeXJxdW9EZTQ9MTswMDsn\"","id":"206633df-1797-45e0-b612-6bc97be70862","number":"8710","displayName":"Wages","category":"Expense","subCategory":"Payroll Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.28Z"},{"@odata.etag":"W/\"JzQ0O2l0bERxZmlpbWtldklGeUJyOU93emJYbTZrb2RPd3liMUdKTFlOZ2I3djA9MTswMDsn\"","id":"163eb3fb-a3a7-4d9c-8ce3-70827aa65dea","number":"7150","displayName":"Freight Expenses, Retail","category":"Cost of Goods Sold","subCategory":"Materials","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.997Z"},{"@odata.etag":"W/\"JzQ0O3FDMlErUmd0dEpwbnMweGtheHBtU1Q1bEZiVzQxQjJad2NHdnJ1Tk9Pd2c9MTswMDsn\"","id":"6f3c8ade-d74f-4822-94d2-77f0c1ef3163","number":"5494","displayName":"WHT Settlement","category":"Liabilities","subCategory":"Current Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:13.497Z"},{"@odata.etag":"W/\"JzQ0O213M3RuTVVkTC9zSy8xWG5tdWJ6T2pYTXFJd0ZIZ3g5amU3TkhsbWxVb2s9MTswMDsn\"","id":"790aa0c1-86e3-45b1-9066-783c115a1336","number":"8450","displayName":"Freight Expenses, Raw Mat.","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.96Z"},{"@odata.etag":"W/\"JzQ0OzhjcUlLN3JCbkxuUzRYNXl1NnJkaXlwYU0wcFVWM3hiMXlyWC92Tnd3OVE9MTswMDsn\"","id":"c0c1fb90-ca40-40fc-9d64-7944ee05501d","number":"6111","displayName":"Stock Sales","category":"Income","subCategory":"Income, Product Sales","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.297Z"},{"@odata.etag":"W/\"JzQ0OytDRkNzdVpJd3NvczlaeitaZEJGSnFqSTB4QnVIeGJFNzlXTVA1VWNwYlU9MTswMDsn\"","id":"e01e01c4-a8c6-4e82-a94d-7e2455ba9a64","number":"5830","displayName":"Payroll US Taxes Payable","category":"Liabilities","subCategory":"Payroll Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:13.963Z"},{"@odata.etag":"W/\"JzQ0OzBSSEJUbTJWNDBvdmRtc0FsT1ZtUEtCRkc5QVVGMFFJcG9KSFZZT2haSDg9MTswMDsn\"","id":"ee8bd7e9-4e4f-4101-a1af-9166ddcdcecc","number":"2330","displayName":"Accrued Interest","category":"Assets","subCategory":"Accounts Receivable","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:12.473Z"},{"@odata.etag":"W/\"JzQ0O25Xc3dwTlBHRGlrclZEdHZ3QmJtMXBTazRNOXY3WWoxb0orQWVCRTRlNXM9MTswMDsn\"","id":"e4c11319-01c0-41b7-a3a1-938b044bfd0a","number":"6810","displayName":"Fees and Charges Rec. - Dom.","category":"Income","subCategory":"Income, Services","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.813Z"},{"@odata.etag":"W/\"JzQ0O2c3OVhoa3crcjc5WGtpQ0kxVUR4ckYrRTJxTzlKcnlQemc2ZngzWXZQc1U9MTswMDsn\"","id":"6e6e9d72-d161-4f9e-b924-992c7a60f4d1","number":"5840","displayName":"Holiday Compensation Payable","category":"Liabilities","subCategory":"Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:13.983Z"},{"@odata.etag":"W/\"JzQ0O085Z1ljTk5BMDFDazdnZzlLMUk3eFRaTVd2UTFQc2dIdlErZHpiZ3U0U0E9MTswMDsn\"","id":"1f28b0d3-4c0a-490a-b0e5-99cc4125ea92","number":"5780","displayName":"TAX Payable","category":"Liabilities","subCategory":"Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:13.857Z"},{"@odata.etag":"W/\"JzQ0OzJENWdsMkdOdmdId0tLVkdzY3hsTDl4YWpGRllGMWtEZWp3amZXZXp3RXM9MTswMDsn\"","id":"27eeecdf-8a72-440c-b1aa-9d2e00fafab8","number":"8750","displayName":"Payroll US Taxes","category":"Expense","subCategory":"Payroll Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.367Z"},{"@odata.etag":"W/\"JzQ0O2w0bVVIMk1MQTMvUkdNZkdJdWNhczd0UVJHeE90dzVXaXZGQmdRc1hrcFU9MTswMDsn\"","id":"4d50c168-e360-4f6f-b852-a55bc66b8d75","number":"9220","displayName":"Interest on Bank Loans","category":"Expense","subCategory":"Interest Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.867Z"},{"@odata.etag":"W/\"JzQ0O2FXZEdzd0ZyQitpRHlYVzdJME50U3FiTUkrd00yakhZdjVRZjI5dkdIRTQ9MTswMDsn\"","id":"254be2b7-cb88-4944-8d34-ac6bbf79ac07","number":"8830","displayName":"Depreciation, Vehicles","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.467Z"},{"@odata.etag":"W/\"JzQ0O2p4RnZ1dnhXNnRxSDdtY0MrdjN1ZUZySUMzRDlsYndtZTBqSlI5K3FPUGM9MTswMDsn\"","id":"5ab90f17-54f7-4eff-a056-b710edefc1e1","number":"9110","displayName":"Interest on Bank Balances","category":"Income","subCategory":"Income","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.637Z"},{"@odata.etag":"W/\"JzQ0O2EyL1BYcDl1MUVSY3RaMWZjU1dndjlpd3Y3VWVlVkRtdGtoNS9halR6dms9MTswMDsn\"","id":"d0ee9e85-222b-4e8a-9294-bcac2134ee0b","number":"6620","displayName":"Job Sales","category":"Income","subCategory":"Income, Services","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.747Z"},{"@odata.etag":"W/\"JzQ0O3p0Z0N5ZWFQbmRkcDcrRUg1bWxnbVR2STlNYVd5VGJ4anJJNFo2SEVIUVk9MTswMDsn\"","id":"f210632c-e61d-4045-bac2-c3762f752725","number":"6610","displayName":"Sales, Other Job Expenses","category":"Income","subCategory":"Income, Services","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.727Z"},{"@odata.etag":"W/\"JzQ0O2p6clVERzl1SUw5enFqdnV4NjRBMjRwU0RqeEd0SDJDaWZwQ0M5ampiWWc9MTswMDsn\"","id":"72f842f1-57e5-4303-a75e-c3954595cabf","number":"8430","displayName":"Travel","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.937Z"},{"@odata.etag":"W/\"JzQ0O29qenU0aEVrb2NoMHZJaU14Tk5CcURMMjUrVHkwZFRCWFN0VnJrd1NrVUU9MTswMDsn\"","id":"3abb1a52-a285-4020-a4e5-c74bc3160b99","number":"8230","displayName":"Phone and Fax","category":"Expense","subCategory":"Utilities Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.707Z"},{"@odata.etag":"W/\"JzQ0O1N5NVZIVHBuMi9HTHZJM3l4MGlNb2I3YnJOU1JWYjBNYWl3eUhJd2twYVU9MTswMDsn\"","id":"51e8bbc4-7c2f-4393-98b7-c76cfe40bda4","number":"5120","displayName":"Mortgage","category":"Liabilities","subCategory":"Long Term Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:13.157Z"},{"@odata.etag":"W/\"JzQ0OzRIU3pTVkJvUm9Wd1BWVlFKUWJFckdLMGpramtNVDJWTWFtSm5iU0hPZHc9MTswMDsn\"","id":"9297101a-1331-4716-a6cb-c81d9eebc2ba","number":"8730","displayName":"Superannuation Contributions","category":"Expense","subCategory":"Payroll Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.323Z"},{"@odata.etag":"W/\"JzQ0O3NXdWVzNnlUNVlRb1didXNmdlBpY1FBbnYyNnpqV0FTQTNRRDQ4UE01RjQ9MTswMDsn\"","id":"18f84167-3d7e-4399-bb1c-ce69d58ad743","number":"8240","displayName":"Postage","category":"Expense","subCategory":"Utilities Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.727Z"},{"@odata.etag":"W/\"JzQ0O2sxWVYrcUJ3ZkF5QXJ3QjV1Y2JYVnpwM1JyZHJVWjlHSGViWTAxcFFMdms9MTswMDsn\"","id":"ad3ebc72-ae99-46a8-8916-d4e39382494c","number":"9120","displayName":"Finance Charges from Customers","category":"Income","subCategory":"Income","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.66Z"},{"@odata.etag":"W/\"JzQ0Oy8wdVZpU1huM2ExL2xxVEd5dG55NGJXNHFtbWlNeUlodytKc0dMc01UTHM9MTswMDsn\"","id":"19a4ac3f-c593-4184-8a2e-d6ff7922ba5e","number":"9240","displayName":"Finance Charges to Vendors","category":"Expense","subCategory":"Interest Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.907Z"},{"@odata.etag":"W/\"JzQ0O1FCS1N3NFMrOWFLVHhPcUs1QkVncnFpUDh1TmpVSmhaODZ3UHYwdWV5WjA9MTswMDsn\"","id":"950acc07-83fe-43c6-aa39-d710aa837d93","number":"8910","displayName":"Other Costs of Operations","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.53Z"},{"@odata.etag":"W/\"JzQ0O0hTdHAxWVNiWTQvRHEvdmRndStOQktzTlRpTE1kSUplU0lHRndLdVlEZVE9MTswMDsn\"","id":"fef294ac-3f54-4e6b-9ccb-da9a51406499","number":"9210","displayName":"Interest on Revolving Credit","category":"Expense","subCategory":"Interest Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.847Z"},{"@odata.etag":"W/\"JzQ0O2RUaEF4TURpSzRXQ2lad0pHV0dJVktBWWtGeW4wTE9mdFQzUzBkZVMvZnc9MTswMDsn\"","id":"30e45e2e-e3f2-4f5e-a6de-e16e693e9478","number":"6113","displayName":"Rental Income","category":"Income","subCategory":"Income, Product Sales","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.337Z"},{"@odata.etag":"W/\"JzQ0OzU0SndXMW1jZ2lNK2M5VkloUDFUcFRnandqbDA2NS84VzRqazViTm5nNDA9MTswMDsn\"","id":"2afd33a6-4ee0-42c5-9f72-e584bf7c5cb1","number":"8420","displayName":"Entertainment and PR","category":"Expense","subCategory":"Advertising Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.917Z"},{"@odata.etag":"W/\"JzQ0OzhrbFEyNFExZ245QkZ3eVN3RkUwaWVuM2dVcEJQWXgyaEJOZm5UZUVRVlk9MTswMDsn\"","id":"11c3e9e7-4031-47e0-a90a-ec9f9d0bd69c","number":"8410","displayName":"Advertising","category":"Expense","subCategory":"Advertising Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.897Z"},{"@odata.etag":"W/\"JzQ0O1ZtRFVMK1FkTnhDYVJqbURsT01iRTVPYmlSRlpOUTNhVFVMWmFjU0g0ZFU9MTswMDsn\"","id":"c68cc679-24e2-487d-a187-ed1ee8a83375","number":"5850","displayName":"Employees Payable","category":"Liabilities","subCategory":"Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.007Z"},{"@odata.etag":"W/\"JzQ0O1VLcWptUE53Z05sR0ZycUhJVlZEcGg5U1ExRVJlSUpIaFpqZUM4c1ZoY0k9MTswMDsn\"","id":"9ea146fc-b1e4-4cb6-abc6-f294ac2de8a9","number":"7250","displayName":"Freight Expenses, Raw Mat.","category":"Cost of Goods Sold","subCategory":"Materials","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.247Z"},{"@odata.etag":"W/\"JzQ0O1VUM2lSTVRBUkZFNUJPc0lMcDZvcEtmL1RwMjVRQTJ4a21xUkREQyttdTQ9MTswMDsn\"","id":"fe0ab1ac-9bb1-4d4f-8a97-f2b9b622d9fe","number":"8530","displayName":"Repairs and Maintenance","category":"Expense","subCategory":"Repairs and Maintenance Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.063Z"},{"@odata.etag":"W/\"JzQ0O2Iwc3BNYnhpVTVWQWhuV0FRZ3NvNHZYeWRTNE5KQnpsRzh4TFI5Q0lRTWs9MTswMDsn\"","id":"30661ed6-aade-4a4b-a968-f412efec25b1","number":"1220","displayName":"Increases during the Year","category":"Assets","subCategory":"Equipment","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:11.683Z"},{"@odata.etag":"W/\"JzQ0O2ZyMldHOGQ1Q3VVQ0w0d2pXdGNYUFFZbzZtb29rNmNDMkluZStUaE4yM1U9MTswMDsn\"","id":"f5c2b328-4c58-4d57-b94c-f58521752810","number":"9510","displayName":"US Corporate Tax","category":"Expense","subCategory":"Tax Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:17.21Z"},{"@odata.etag":"W/\"JzQ0O3dqMmVab0F0WWRIOXFjRm53K2diWGN2SjB5VU1TajgrTEVLbmoxbHV0Vlk9MTswMDsn\"","id":"c5d8bd72-621e-46fe-8234-f66a937f4df6","number":"8330","displayName":"Other Computer Expenses","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.83Z"},{"@odata.etag":"W/\"JzQ0O0t6eDBYNGROMWJWQ3dvVUNna3FsR1krOW9vdVpMZ0Voa294L1QwcFdPUG89MTswMDsn\"","id":"0507d042-8acf-43a7-aad0-f66b874f072d","number":"8620","displayName":"Bad Debt Expenses","category":"Expense","subCategory":"Other Income & Expenses","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.15Z"},{"@odata.etag":"W/\"JzQ0O1VQQm5wWXo2dWxMSEFDWDF4UUR2TkFVSzg5RkgweFpaZjBlU2tpODI1ckk9MTswMDsn\"","id":"f11b8810-1eda-4416-9c0b-f763cf626ebb","number":"8610","displayName":"Cash Discrepancies","category":"Expense","subCategory":"Other Income & Expenses","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:16.13Z"},{"@odata.etag":"W/\"JzQ0O1g5SFFsRjZRY1BJU3FYZkx5aTZ6S1N0cUZmSnRBMXNNdG95U01Fek5hSTQ9MTswMDsn\"","id":"903b1100-8d32-4e59-b87b-fa930a78636f","number":"8310","displayName":"Software","category":"Expense","subCategory":"Expense","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:15.79Z"},{"@odata.etag":"W/\"JzQ0O0kzOVpOWm94WU5LTUpDQ21iaCt2T2cvd3l5SnprUzBzR0REVW1NMWtOMVk9MTswMDsn\"","id":"0a9aa0e7-c9ad-4674-af6c-fcb0f5c776d9","number":"6230","displayName":"Sales, Raw Materials - Export","category":"Income","subCategory":"Income, Product Sales","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:14.49Z"},{"@odata.etag":"W/\"JzQ0O3NvNm9yWUhLNjM4OCtpb00zZ2VhdTcvMWFUM2F5OGU0d3R4NGZQMTZPV1k9MTswMDsn\"","id":"6dbe4759-d402-4543-a45a-fd4d20185333","number":"5820","displayName":"Supplementary US Taxes Payable","category":"Liabilities","subCategory":"Liabilities","blocked":false,"lastModifiedDateTime":"2019-06-24T17:53:13.94Z"}]}
@@ -0,0 +1 @@
1
+ {"@odata.context":"https://wiise.api.bc.dynamics.com/v1.0/cronus.com.au/api/v1.0/$metadata#companies","value":[{"id":"93b4dabd-da6b-416c-8f92-6c98a0e4d523","systemVersion":"33653","name":"CRONUS AU","displayName":"","businessProfileId":""}]}
@@ -0,0 +1 @@
1
+ {"@odata.context":"https://wiise.api.bc.dynamics.com/v1.0/cronus.com.au/api/v1.0/$metadata#companies/$entity","id":"93b4dabd-da6b-416c-8f92-6c98a0e4d523","systemVersion":"33653","name":"CRONUS AU","displayName":"","businessProfileId":""}
@@ -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)/countriesRegions/$entity","@odata.etag":"W/\"JzQ0OzZnZnZsUWNlTmIyR3ZaK1REaWVaWDl5OTdRQm1waTltdG14L0VCdlVlZ0E9MTswMDsn\"","id":"d9858107-50c4-4adc-aeec-05f622324d6d","code":"BR","displayName":"Brazil","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.537Z"}
@@ -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)/countriesRegions","value":[{"@odata.etag":"W/\"JzQ0OzZnZnZsUWNlTmIyR3ZaK1REaWVaWDl5OTdRQm1waTltdG14L0VCdlVlZ0E9MTswMDsn\"","id":"d9858107-50c4-4adc-aeec-05f622324d6d","code":"BR","displayName":"Brazil","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.537Z"},{"@odata.etag":"W/\"JzQ0O2EwdzZReVp6WW52NTR5ZWE1c2FVZ0Y3Z1RHSkpGd1VhWVMrUHVKL2x6U1E9MTswMDsn\"","id":"cf395c64-a3b9-448e-81d6-069452c63711","code":"MZ","displayName":"Mozambique","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.907Z"},{"@odata.etag":"W/\"JzQ0O0JFWHkzQTNsMUpJV3dGQk95UUdPUy8zdWlaRVF5bjAxMHY0QmEzSWl2dUE9MTswMDsn\"","id":"3d0f0dc2-6b4c-4471-a9b0-08418a9f9493","code":"UG","displayName":"Uganda","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:10.157Z"},{"@odata.etag":"W/\"JzQ0O1ZKbEFCWUREYjNxRnMyejhuTFZGVkZpV2xaSkJuTU9jVHRLa3JJKzF3NWM9MTswMDsn\"","id":"62c9bf75-d23c-4ea5-98ae-0baea14d24dc","code":"RS","displayName":"Serbia & Montenegro","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:10.007Z"},{"@odata.etag":"W/\"JzQ0O0M2Tm1LNDhJOTVmdmNXeThETVVRdlVjU0tWWUlOdHRPQU53RlJyNHdWR0E9MTswMDsn\"","id":"0a48c344-7e19-4bf6-b795-0d66a6c7ff89","code":"SB","displayName":"Solomon Islands","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:10.04Z"},{"@odata.etag":"W/\"JzQ0O0tUaUNJSlR2Uzl1dFB5L3o0SkpIVmk2ZlNBNTYwS3pBK1hwbmdGNUdxNVU9MTswMDsn\"","id":"ffebca91-73f8-47ca-9274-1507e3eba446","code":"LT","displayName":"Lithuania","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.82Z"},{"@odata.etag":"W/\"JzQ0O0FkZ3IzS1hmYWtWaTFpbFZtMVlML0IxdTlZcnRMQS9pR2ppT05IQmRZbWs9MTswMDsn\"","id":"98b72113-2912-430a-a4be-21530d44af48","code":"JP","displayName":"Japan","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.797Z"},{"@odata.etag":"W/\"JzQ0O1FzZXIybTM2UzlqZVcxR3d3UWVFUE10dkZESlVZbnVlQThLY2lwMjJMM1E9MTswMDsn\"","id":"a6bc8077-83d0-42b2-9294-218cdfa6f676","code":"AE","displayName":"United Arab Emirates","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.467Z"},{"@odata.etag":"W/\"JzQ0O0N0QkRVaTJLaG91SWRDSGhSQnBMMU9HWVhxeHZ5N25WTVluQTRyb2h6Z009MTswMDsn\"","id":"cc46dcd6-ee5f-443e-b52c-21c604d4041a","code":"HR","displayName":"Croatia","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.723Z"},{"@odata.etag":"W/\"JzQ0OzFvMmZqRlQwekRWT052R083em52OXd6WkpEdUtwV3JaakhQWFJlQTFqTDQ9MTswMDsn\"","id":"241e3f4b-6a40-4919-951f-23124e08dd50","code":"IT","displayName":"Italy","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.787Z"},{"@odata.etag":"W/\"JzQ0O2dja20yZ3FJTE5ZaGpnSTZudmZXRjY2dFkwRUFNZ1RmOGlnM1VldW5mazA9MTswMDsn\"","id":"e45db16b-3090-4b2c-9e4b-2444d7081e1d","code":"MX","displayName":"Mexico","addressFormat":"City+County+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.887Z"},{"@odata.etag":"W/\"JzQ0OzVXVHY3N2VqRTB6VkVWS0pLL3QwOXZFS1VXTzVhOElGeHA2TkdZYVVhdDg9MTswMDsn\"","id":"6d50f442-f1a5-4fb2-be64-2654daceb0e1","code":"TZ","displayName":"Tanzania","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:10.147Z"},{"@odata.etag":"W/\"JzQ0OzQxSXJ1cXJobkNHb0I0akhGQWJ6Rm01ZDNRbk03bHkzR3IwN01WcmRHS0U9MTswMDsn\"","id":"123f3998-ce0b-40c8-ab86-2be2f5c2263c","code":"HU","displayName":"Hungary","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.733Z"},{"@odata.etag":"W/\"JzQ0O3Bxd2Q3cHV4K051T0tHSFRRTzhCUkJaNzZ5NUtqMjJuUVY4MDF6YzZ0TjQ9MTswMDsn\"","id":"ec037bf8-248b-4774-93f4-3083c077819e","code":"NL","displayName":"Netherlands","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.927Z"},{"@odata.etag":"W/\"JzQ0O1BlNVRTK2lWNkNrZnBWL2tCOFRSTFlyaldZY2ZUNjJtd1dvTERYNVU0cGc9MTswMDsn\"","id":"197c3986-23c3-4ce8-9c51-30a604a68fab","code":"ZA","displayName":"South Africa","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:10.2Z"},{"@odata.etag":"W/\"JzQ0O2d1elRqdHhkL1RGNkkxaHJZNTN1dDhLbG1YSzNjS3ZCMldYUEwyNUxndFU9MTswMDsn\"","id":"a4581f12-13f3-4fa2-9386-31d6323a5fbc","code":"NZ","displayName":"New Zealand","addressFormat":"City+County+Post Code (no comma)","lastModifiedDateTime":"2019-06-24T17:53:09.95Z"},{"@odata.etag":"W/\"JzQ0Oy9LemZLOXh3VEJlTkx1NUF6alJoaVdPNm5RQm1HcGR3MU01R2NLdFpCZ2M9MTswMDsn\"","id":"173db2b9-7699-4b94-8717-3ddb4db87b49","code":"ES","displayName":"Spain","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.67Z"},{"@odata.etag":"W/\"JzQ0O081NHBteXZ0dU5pSk9kSVZHTVFvQklxVisyWjdxTC9Zbm1GL0lUOHVrejA9MTswMDsn\"","id":"c83cfc28-f644-4946-b337-453b3fb3e119","code":"WS","displayName":"Samoa","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:10.19Z"},{"@odata.etag":"W/\"JzQ0OzUyMzBKUFlXSG1qNTJza0pGRE0yZTZkWTRQNTBPZDRGMXJock5ZTkhXQzg9MTswMDsn\"","id":"5603be8a-afeb-402f-896d-453c2a86c42c","code":"CH","displayName":"Switzerland","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.56Z"},{"@odata.etag":"W/\"JzQ0O3A2dHhVN2pqeHhUbHFnd0E0eXorRzZsdmx2L05NOU1ENGJ1T0hnejBpK0U9MTswMDsn\"","id":"613cbb4d-aa4a-48eb-9ed5-47e1f0e575b3","code":"DK","displayName":"Denmark","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.627Z"},{"@odata.etag":"W/\"JzQ0O202MFpCWUx5aForTGExMzZ5dmNYTWw5SGpvbkFqWEJzNjg0cm8xZGhHbDA9MTswMDsn\"","id":"7b8df5f8-ddd1-4cec-83e4-511143363be9","code":"US","displayName":"USA","addressFormat":"City+County+Post Code","lastModifiedDateTime":"2019-06-24T17:53:10.167Z"},{"@odata.etag":"W/\"JzQ0O0R1SHAxbjVmdmFrR2JmOWFpa2tyNmpYTmhVcWVnV3VKc1hhQmJqZ3RxUzQ9MTswMDsn\"","id":"8819004d-e754-4ee3-bd9e-531a25d25dd1","code":"MA","displayName":"Morocco","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.85Z"},{"@odata.etag":"W/\"JzQ0O1N3MXAyRnZZVmU2UVphZ05hVnBaanJvdWxNNFdzeWoyUXBTWE9BQ0x4cEk9MTswMDsn\"","id":"f057509f-f89f-42fc-98f5-535896c57066","code":"NG","displayName":"Nigeria","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.917Z"},{"@odata.etag":"W/\"JzQ0Ozg2bXFEdkFFbndWd2UrbnhPU2lHQWk3MXd6VUlEOTBKVUw0VGVYSVNjc3M9MTswMDsn\"","id":"420a6c4a-8f50-4d90-9ae5-592d558e31ed","code":"ID","displayName":"Indonesia","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.747Z"},{"@odata.etag":"W/\"JzQ0O3hkUHlKZmtsbmQyOFFxZTRmK0s5Zlc4N2poOE1ZK2xveWZxa0FyOVBZVEE9MTswMDsn\"","id":"8654d565-0d55-475d-b6e6-64c4af19ff40","code":"PH","displayName":"Philippines","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.96Z"},{"@odata.etag":"W/\"JzQ0O3E2U0NaVGx2eEtDSEpZZU42eXgxRnJRQ2hNVVBwWHhTZE83S2hHTGZBZE09MTswMDsn\"","id":"2e1b39cc-4549-4ee1-b34e-67aba320080a","code":"AU","displayName":"Australia","addressFormat":"City+County+Post Code (no comma)","lastModifiedDateTime":"2019-06-24T17:53:09.493Z"},{"@odata.etag":"W/\"JzQ0O2Q0VkRFMFBzNExWTXd1bjdaUkVlMTQwRkx0VTR3TGo2RXZpMlBnR29BaWM9MTswMDsn\"","id":"8f3f8dae-756b-4999-b759-6c822c61e54c","code":"EE","displayName":"Estonia","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.647Z"},{"@odata.etag":"W/\"JzQ0O29vTGdLVERiVHZiUjlaaE9TcUdFUmRkeFZPRnFUSG9qRFZZbktTdytlWW89MTswMDsn\"","id":"65a5cedd-1e8b-4596-9874-6f9c7e8eff12","code":"GB","displayName":"United Kingdom","addressFormat":"City+County+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.71Z"},{"@odata.etag":"W/\"JzQ0O3hvZnE1RWRKNjdtMDVCY1V2T1BDRUhEL2xjbC9UNDRQTjVNRlVtOExKRGM9MTswMDsn\"","id":"ff1fc48b-4427-4d64-8191-7098041a77a1","code":"IN","displayName":"India","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.767Z"},{"@odata.etag":"W/\"JzQ0O2VkT0locnN0OVdZcmxNRi9HUnZOeDNiaGdkcGhkbGUrZEFZc05maXRnb3c9MTswMDsn\"","id":"ebfeb3d4-b179-4021-b23e-70a255301944","code":"DE","displayName":"Germany","addressFormat":"Blank Line+Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.613Z"},{"@odata.etag":"W/\"JzQ0O3hUQ0NuTm9FcHpaNGd4czU0MEY1c3dZM21JRVNURU81MXBHUmRYbGlxNFk9MTswMDsn\"","id":"04967d1e-6fc0-41ff-924a-78dc32ddbfcb","code":"BG","displayName":"Bulgaria","addressFormat":"City+County+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.517Z"},{"@odata.etag":"W/\"JzQ0O3BST3ZsYVVaN2ZOYVlVWkdweUp6Y2hNc1ZVNTdaVTU3dDYxWXA5eUIxS0k9MTswMDsn\"","id":"85333ce6-5a36-4a8b-a3a2-78ee1fd49482","code":"MT","displayName":"Malta","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.873Z"},{"@odata.etag":"W/\"JzQ0O0hYRjR4LzE4WGF4NU94NG5ndFZ6bGNwckl2S1diNWhkNmhWQ2xlMDM1Mnc9MTswMDsn\"","id":"4d9660f7-91b7-46e5-aac7-7c02b0888676","code":"CR","displayName":"Costa Rica","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.583Z"},{"@odata.etag":"W/\"JzQ0O0MydHlkT3pSSHpBUE9IempmaHk3Y0xCNGRsMU8wUzNscEhJeTB5YkplRms9MTswMDsn\"","id":"d4674629-b7d5-4b91-981e-7d7fe9ba9795","code":"CN","displayName":"China","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.57Z"},{"@odata.etag":"W/\"JzQ0O1hxYXE0NmM2akw0bEx3L2YrU0pZclpBS3dvb0xiUXpkSE1oa0diTUwwbXM9MTswMDsn\"","id":"7bcccdb1-f2e0-4eda-87e1-7ff9203f2311","code":"VU","displayName":"Vanuatu","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:10.18Z"},{"@odata.etag":"W/\"JzQ0O3REL3VDd09BOFFMdkJyTzhERHpMZ1hGSElnZlI1NHBHcTd6UGgrTHhUczg9MTswMDsn\"","id":"76db533d-6336-47d8-8e77-82f9958f2d6f","code":"EL","displayName":"Greece","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.657Z"},{"@odata.etag":"W/\"JzQ0Ozg5d1E4amxDMnI3bnFYaWZsendjVXliZFljWXZoZFN3MnQ4V3A1c3JGUzg9MTswMDsn\"","id":"ecaa6e18-5d03-4668-91e4-83dd472603ec","code":"ME","displayName":"Montenegro","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.863Z"},{"@odata.etag":"W/\"JzQ0O1JlTENMWVVSRXFJNEE1d1Y3Yy9TdXJJVUM0U0MyNndYbDBVQmo0U0w3QUU9MTswMDsn\"","id":"8de92e60-a181-438d-b7a1-86d0822040a6","code":"BE","displayName":"Belgium","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.507Z"},{"@odata.etag":"W/\"JzQ0OzBiZEVyVG02VW9Fd3BTVzIxNUhWT3VaZzVqTi9RUXNZVjdNd1YzWGVPQW89MTswMDsn\"","id":"152ddec3-1770-474f-8eef-8c7dd923b790","code":"MY","displayName":"Malaysia","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.897Z"},{"@odata.etag":"W/\"JzQ0O2JCT3VNcEJQYmFtMVNubS9lK2NzSVRpSnF4SXgrUVdmbUVLckNHd0ZRQjQ9MTswMDsn\"","id":"5a1bfb16-0cb6-4c31-b3d1-8f0240db561c","code":"LV","displayName":"Latvia","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.84Z"},{"@odata.etag":"W/\"JzQ0O0F1R2VCbG5hWmQrbFB2SDhNbElaVk5nTnpzYjVsSmxsNzZONUNWejA2Zmc9MTswMDsn\"","id":"58b46dc6-593a-4779-b7e8-920303ee0da7","code":"IS","displayName":"Iceland","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.777Z"},{"@odata.etag":"W/\"JzQ0OzFrQStTbmNxSVZHMDRNb2ZuM3JJWm43UkFCTjlZUHkxQ256VUN2Z25GT0E9MTswMDsn\"","id":"812d7eed-44e5-4c6e-890d-986971edc28b","code":"KE","displayName":"Kenya","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.807Z"},{"@odata.etag":"W/\"JzQ0O25OWW9LdnpJSXRYbjdZTzA2UXZ6UVZPVWFPT3NCaUdGMXc4UWxpV1k3S2s9MTswMDsn\"","id":"589202ea-3fb3-49bd-b0e1-99a8495628ae","code":"CZ","displayName":"Czech Republic","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.603Z"},{"@odata.etag":"W/\"JzQ0O002a1BGczdqbDVmSk9nTk1ZMHcyMkg1QTFDMURKeEhQUUR2Qkl6eGp4dkk9MTswMDsn\"","id":"aa4a06f5-e175-44dc-a594-9c0696c98cda","code":"SG","displayName":"Singapore","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:10.063Z"},{"@odata.etag":"W/\"JzQ0O2FMZ2hwZk5YOGF3WVBGdUN6U3BKQlhrMnBtVzZxSXpJY3AvY2M1Y1VrZ0E9MTswMDsn\"","id":"ee59dda3-bcd2-45ac-8de2-9f5f9fb12490","code":"CA","displayName":"Canada","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.55Z"},{"@odata.etag":"W/\"JzQ0OzMvY09SSC81bGFNSHhKeFU1YUpuSllFZDVEVzlGNXNnazYzVXhzVzFBd2s9MTswMDsn\"","id":"76a14515-d323-4c5b-9775-9fb39cec94c0","code":"IE","displayName":"Ireland","addressFormat":"City+County+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.757Z"},{"@odata.etag":"W/\"JzQ0O0hWc2UvbzRvT2ZWc3lEdmFMeTJPR2ZNYWQ0eXloRldkOEpLa0tCOFBSeDA9MTswMDsn\"","id":"97778943-dd00-40d1-979a-a4a150e85046","code":"SI","displayName":"Slovenia","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:10.073Z"},{"@odata.etag":"W/\"JzQ0O2xWSzgvTjA0OWFoL1UvRXp4V3c4M1pnanJvc0o4U3RETm53K1g0Q0l6S2c9MTswMDsn\"","id":"55d03000-6bc4-4534-93e3-a802f639d82c","code":"RO","displayName":"Romania","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.997Z"},{"@odata.etag":"W/\"JzQ0O3ZQakkwcTBmdmdaVGJBQk45djlsSmNtcldhTG9JaVZhMGwzZHlRTitkRzQ9MTswMDsn\"","id":"0a7969c5-89fa-4afd-919b-b413971b0cb4","code":"SZ","displayName":"Swaziland","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:10.093Z"},{"@odata.etag":"W/\"JzQ0O1hUNi9JY2ZmL0tVaGQ3MU4xN2tzT3JiK0JzdTdtYmFsQjFjWk9HWFJaN289MTswMDsn\"","id":"e85f672d-0713-4746-bc63-b7174386ee5f","code":"PL","displayName":"Poland","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.973Z"},{"@odata.etag":"W/\"JzQ0O3ovc0FZNGFCWXdPOTRqVzRUdUgxL3NuVnpNSEptUWkxM2tCR1B0KzNsdm89MTswMDsn\"","id":"cb5eda21-e389-4a88-aec3-bb53f5b77fd4","code":"BN","displayName":"Brunei Darussalam","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.527Z"},{"@odata.etag":"W/\"JzQ0O3JaWHdHVkN4aGpiSE9ySm1Zd2ZIWDZzaC9kK09FR2J0dmczKzJ2RlpOa289MTswMDsn\"","id":"492cbd95-9bb4-4634-bdf8-bf701986cfd5","code":"RU","displayName":"Russia","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:10.017Z"},{"@odata.etag":"W/\"JzQ0O2gwVitvV3gxbW5ycFdzSnRqbk9jNXdqTnFiTzd5aVRjbkJsSFdZb1hZRnM9MTswMDsn\"","id":"1859d2a0-e0dd-4bc7-9337-c59642a3f449","code":"DZ","displayName":"Algeria","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.637Z"},{"@odata.etag":"W/\"JzQ0O1lJNE1HbHFYRVA0aEcvSDhOeUdOUnRXTmVFbE9Cb3VpaVl2cTg0aDNYYlk9MTswMDsn\"","id":"dc11e0e9-bcd5-4b1b-b2d9-c5bb66f9d9eb","code":"AT","displayName":"Austria","addressFormat":"Blank Line+Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.48Z"},{"@odata.etag":"W/\"JzQ0O3UrWHJVNzJJZUtHTmpkdkgraVhmZ0l1RldLbWJjOG01SHdSbUY2WkFWSTg9MTswMDsn\"","id":"6992b8c1-ebfd-4234-a5bb-cb2887d6f8cd","code":"LU","displayName":"Luxembourg","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.83Z"},{"@odata.etag":"W/\"JzQ0O3ZyMCtFZUxSd0pLRU9HY1hWK3lPWnFSQ2N3NkpLcU94WW5pMTBHdnFldVU9MTswMDsn\"","id":"79d36c55-7b42-4f66-bed6-cf7445e29be5","code":"TR","displayName":"Turkey","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:10.127Z"},{"@odata.etag":"W/\"JzQ0O0FkUE43TmpKS2hRTVUyei9vRkwwVHJEclV3dVcwcmZmY3h5bW4zRmlvZVE9MTswMDsn\"","id":"19c30fd2-9fbc-462f-b44d-d1c49be2579a","code":"FR","displayName":"France","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.7Z"},{"@odata.etag":"W/\"JzQ0O1JDTVNEUWNXOUFYWGRKU0gyOFl5c0NOVUZaNFVLNkp2VVYyU1JIV2hoQm89MTswMDsn\"","id":"1efec841-bae4-4582-af77-d33d9d162a6e","code":"CY","displayName":"Cyprus","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.593Z"},{"@odata.etag":"W/\"JzQ0O2Q3M2FYbzZDaU9xOGM1akNJdS9Ld05jYVA0T0xXdFNEMnhMdHdoM3F1Q1U9MTswMDsn\"","id":"7017fee1-2d54-4fde-aada-d9c86be97ec9","code":"TN","displayName":"Tunisia","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:10.117Z"},{"@odata.etag":"W/\"JzQ0O0dUeW42ZCtZMjVYVUxUcysyd0gxWVNXSHZhTVBtRDZQUEhpNGNiQkJLaHc9MTswMDsn\"","id":"ed9b29f4-1ee7-43da-9733-e36d03f69467","code":"PT","displayName":"Portugal","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.983Z"},{"@odata.etag":"W/\"JzQ0O29pNHhaZlhpVGIrTlNwSzZuY3VZNW56SkVhb3RBSFlxelBvN200Z0F2MHc9MTswMDsn\"","id":"4d73e7aa-9b48-40f2-8b32-e8bbf8bae3f8","code":"NO","displayName":"Norway","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.94Z"},{"@odata.etag":"W/\"JzQ0O1B0MTlNcFBwcENSdzNUUDNLOHlzaU91UEQ0ZGw2TEpFYzVOb1RFekt5cm89MTswMDsn\"","id":"14403249-9cb3-44d9-b279-f0d2a8630cc8","code":"TH","displayName":"Thailand","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:10.107Z"},{"@odata.etag":"W/\"JzQ0O0s0ODY2YUFBYjFNL3VpNS9XaTUyOEF4Wk96L0p3Zm52enlBTExUUUp3L0U9MTswMDsn\"","id":"e0c71eab-183f-45c3-b74a-f18c1ba66793","code":"FI","displayName":"Finland","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:09.68Z"},{"@odata.etag":"W/\"JzQ0O1JBQnFFejJ2dkFsZ0FUaUZic01hZGptOE90bk5tMndUbjVIWUJsZ2EzL3M9MTswMDsn\"","id":"ea2e52be-f7e3-47e9-b999-f4f596e9f820","code":"SE","displayName":"Sweden","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:10.05Z"},{"@odata.etag":"W/\"JzQ0O2pHeEVQV1NMSCtZbjFraU5XbytPQUxKUkZjZzRaSHV0Sml0SGkyN1h0cnM9MTswMDsn\"","id":"68cd95b3-6a8e-49df-9934-f7a7e793b2e0","code":"SA","displayName":"Saudi Arabia","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:10.03Z"},{"@odata.etag":"W/\"JzQ0O1BRR3IrWWJ3TzljaHNRVzg5bXB0ekhqWENtMHFsYUhEMmRydHY5M3BmWjA9MTswMDsn\"","id":"61d020ac-7cb7-4e62-bc6a-f7b098a09032","code":"SK","displayName":"Slovakia","addressFormat":"Post Code+City","lastModifiedDateTime":"2019-06-24T17:53:10.083Z"},{"@odata.etag":"W/\"JzQ0O1l5bDRudzJLVklHbG9iOXBVYkZrNkNDYU5LM2pYd2t0dkNZbU5OcFM1MTg9MTswMDsn\"","id":"e31a1b38-db9c-4389-874e-fcfb9aa28a4a","code":"FJ","displayName":"Fiji Islands","addressFormat":"City+Post Code","lastModifiedDateTime":"2019-06-24T17:53:09.69Z"}]}
@@ -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)/currencies","value":[{"@odata.etag":"W/\"JzQ0O1IzelhmZ2hZMlQ0RGY0T0dha0JqUDVjR3VtaTNMejMxZ21ZWEl6c3dwNGM9MTswMDsn\"","id":"bfdcbbf1-1357-412c-926f-05d4ddafbbd4","code":"CAD","displayName":"Canadian dollar(s)","symbol":"$","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.227Z"},{"@odata.etag":"W/\"JzQ0O0tvc1E4Q2pqc1ZYWGc4ZytCVHRvbnJ5UTYyaCsvMURUVy9XNjJENVJxd3c9MTswMDsn\"","id":"8ced8505-aa6e-409c-8fcb-0f2b9dfef8ab","code":"FJD","displayName":"Fiji dollar(s)","symbol":"$","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.327Z"},{"@odata.etag":"W/\"JzQ0O3VZMDdLcVZQZmpQNURRNStTMytkaFE5cmxpbE1hYlpVa0JHaTdIQXp6QVE9MTswMDsn\"","id":"7f30b6ed-2b4b-4c80-a8fa-12c9768d5179","code":"MXN","displayName":"Mexican peso","symbol":"$","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.533Z"},{"@odata.etag":"W/\"JzQ0O1grVjdZQ1d6K0tpcGJrTEpaVjYySFA4a3JZTnpjS1ViYjBXUVlHOGhEams9MTswMDsn\"","id":"26f2d5c8-6c41-43a8-9942-1470821fa245","code":"GBP","displayName":"Pound Sterling","symbol":"\u00a3","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.343Z"},{"@odata.etag":"W/\"JzQ0O2hGcTJxTXM5UkJmckpmNzhlUDBLQ2pMNTlPUVZGQ0M3QzB2THNoV3FZY2M9MTswMDsn\"","id":"ad7bf498-4827-47cc-97e8-1e5f13e6a1f7","code":"TRY","displayName":"New Turkish lira","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.86Z"},{"@odata.etag":"W/\"JzQ0OzBSL3c0L0tFQlViSDdSWU5hWjVUQ3RZS2JqdXJ6bURGaFU2VXplclRhM3M9MTswMDsn\"","id":"8c0d3e39-cc8b-4219-9515-260eb9a85a1f","code":"SZL","displayName":"Swaziland lilangeni","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.787Z"},{"@odata.etag":"W/\"JzQ0O2xaVXdsekp2cEFtT1dycitXZTVpa2ltbm9FWUdiWHVhcDViZjZqSGlGNE09MTswMDsn\"","id":"3b73eb13-10e1-4dbf-b418-268fb44d58f8","code":"SEK","displayName":"Swedish krona","symbol":"kr","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.753Z"},{"@odata.etag":"W/\"JzQ0OytaWUxmbm12bHQ5T1VBeVUvVHR0L3pnUXpYamxSRDFtejFlRmoxRUdrbW89MTswMDsn\"","id":"be986faa-86f9-4753-bfd4-2700a18360f8","code":"UGX","displayName":"Ugandan Shilling","symbol":"","amountDecimalPlaces":"0:0","amountRoundingPrecision":1,"lastModifiedDateTime":"2019-06-24T17:53:08.877Z"},{"@odata.etag":"W/\"JzQ0O1ZLVXFycnBnblZpdU12dC9peHFHS0kyWjYwWndaR3ZJdENaTlkzSXZBNms9MTswMDsn\"","id":"64e8be6c-a39c-415f-a3a0-279ff236b285","code":"KES","displayName":"Kenyan Shilling","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.5,"lastModifiedDateTime":"2019-06-24T17:53:08.497Z"},{"@odata.etag":"W/\"JzQ0O0hLcVNraEU3NlRJTkpMalJNZmwwbGhJTldUK285LzJNcGRFZHp1S0RFemM9MTswMDsn\"","id":"362e2b81-bfa6-4100-8a3f-370d8f11de07","code":"CZK","displayName":"Czech koruna","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.26Z"},{"@odata.etag":"W/\"JzQ0O2dnM1FRWTJ0L1FtL1d6a1ZHVm5hNUpDWlBsT1JIQjBwQ1c3SytiUE5aVzg9MTswMDsn\"","id":"479cba23-9cfe-4d48-a74a-3c9b7ee04dbc","code":"BND","displayName":"Brunei Darussalem dollar(s)","symbol":"$","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.193Z"},{"@odata.etag":"W/\"JzQ0O2pmbFViOWJzYVphb1lNYzhVd0dTelkvU2trMGtEdnFOczVIWkN4cmNtSms9MTswMDsn\"","id":"444f161a-ea07-4588-8f09-3d2f25f0a361","code":"SAR","displayName":"Saudi Arabian ryial","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.717Z"},{"@odata.etag":"W/\"JzQ0O2JENElqUi8rM2tUOG9pM2U2NXRJeStXaWplMXViRjNQVUpRdWt6b3crUWs9MTswMDsn\"","id":"95739a4c-cb49-47ef-9d2d-42d89f54924a","code":"MYR","displayName":"Malaysian ringgit","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.55Z"},{"@odata.etag":"W/\"JzQ0O0huMDBFM3pDTXlhS0tZc1RCL0gvUmN2ZHRtZVVpMkV0M1l0ZTFPdmh2SU09MTswMDsn\"","id":"868637ef-8ceb-4b46-8888-4bcfaaa241b8","code":"HRK","displayName":"Croatian Kuna","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.38Z"},{"@odata.etag":"W/\"JzQ0O2N5aE0ydVZqdnR6Tm5kY2xRaUdXOGh4djRQbDJzSlA3NTliWHBtRGlsMU09MTswMDsn\"","id":"36bd780e-fe3f-4a4e-a962-57e0204f1a05","code":"RON","displayName":"Romanian leu","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.667Z"},{"@odata.etag":"W/\"JzQ0O1krVHlrQkhvZHVGVDk3ekJKKzFoOFRuaTl0MzhFOEZ5TDI2NVZmQ3dSbVk9MTswMDsn\"","id":"c3443c73-8920-4fe4-9be0-57f0508c92ba","code":"ZAR","displayName":"South African rand","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.963Z"},{"@odata.etag":"W/\"JzQ0O0N4R2hubnVnUzdHd0xUWXRkejhUbHp0RTFxdTRodVdJc2RucTl2YUdLK009MTswMDsn\"","id":"6776d3dc-731c-4021-aa72-5e2e119604e1","code":"SGD","displayName":"Singapore dollar(s)","symbol":"$","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.77Z"},{"@odata.etag":"W/\"JzQ0O2hTcCt6MXVBa3lHQWd5U3ZxU05WMm92NnRlNUFKZU9lL3FIUjVuYVRvOGs9MTswMDsn\"","id":"50dcadc7-5393-47b0-870c-68daeb4d4b78","code":"DZD","displayName":"Algerian dinar","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.293Z"},{"@odata.etag":"W/\"JzQ0O2R1d0d0bmowQ04vRWI2OVhZUmVsRDVSVncvRkoxd0gyd3pCbGdjcFpMbW89MTswMDsn\"","id":"401a10ed-3607-4267-9e46-73e7628efa86","code":"BGN","displayName":"Bulgarian leva","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.173Z"},{"@odata.etag":"W/\"JzQ0O1NBdGxwdzNPcUdHWCtNUWtRZU5oUmtscHRZRXlNM0JNQjlWVlRLWXg0eVU9MTswMDsn\"","id":"629199aa-6e63-43a8-9abc-7cf426c060f1","code":"MZN","displayName":"Mozambique metical","symbol":"","amountDecimalPlaces":"0:0","amountRoundingPrecision":10,"lastModifiedDateTime":"2019-06-24T17:53:08.567Z"},{"@odata.etag":"W/\"JzQ0O3ZJVTFEQy9XNlcyc3VQWmx6WG5Xc3JxeDFQd1REQWEwaXJydEpJNjFOeFE9MTswMDsn\"","id":"c1e4e93d-978b-4097-b05f-8536ce244acd","code":"XPF","displayName":"French Pacific Franc","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.943Z"},{"@odata.etag":"W/\"JzQ0OzJFcG96SDduWjYvaXJ6Z2dybEMwYUVLL3RVSlBnS2lsTmdMM24xbWwrQU09MTswMDsn\"","id":"42c7456b-2b38-4b93-ac53-856a8b5f024a","code":"BRL","displayName":"Brazilian real","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.21Z"},{"@odata.etag":"W/\"JzQ0O2U2Y2dEUVUyU3JUb0FRVVAwaUNTQWVsVytKVFhkUXpSUTdYR0I3OEc2T0k9MTswMDsn\"","id":"c05a5515-29a1-48c9-987b-89d75d840fed","code":"JPY","displayName":"Japanese yen","symbol":"\u00a5","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.48Z"},{"@odata.etag":"W/\"JzQ0O0prVG9wUTg2UXd3dzI0Qk1hdDRJcmlHMGNVRC84QlZ2ZWdrSzF1YzZ4TWc9MTswMDsn\"","id":"0498a872-8b84-4d9b-9dad-8a1da5072275","code":"PHP","displayName":"Philippines peso","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.637Z"},{"@odata.etag":"W/\"JzQ0O3JleU1VQzlNTXgxQ0RJNXg2MHRuWktMWUt2bHlORUxRZ21tREp5elJxYnM9MTswMDsn\"","id":"6533a17b-299a-4be6-a116-9245da15904e","code":"HKD","displayName":"Hong Kong dollar(s)","symbol":"$","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.363Z"},{"@odata.etag":"W/\"JzQ0OytQNWQ5RjhSbytaczZsU2EvODl3d1ZGRy9zTS9zblljMVdoL05EbTljTVE9MTswMDsn\"","id":"100ecf19-c5cd-4951-8ab6-9675f5946b92","code":"INR","displayName":"Indian rupee","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.447Z"},{"@odata.etag":"W/\"JzQ0O3EycjhmbmVNUWhmWmJDMGU2MWtoN3QxWTREYUJZRGlxcFkrM1FrZE1oZlE9MTswMDsn\"","id":"75f223f8-1afa-4309-8448-a025dc5d5e56","code":"EUR","displayName":"Euro","symbol":"\u20ac","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.31Z"},{"@odata.etag":"W/\"JzQ0O01vb05wbnJFdU1UaEVCMTFLZjNOSFl4UHdEeFBDK1h6UFVTMFJORjNsOU09MTswMDsn\"","id":"4506d6b2-edce-4ccc-b189-a12c870814cb","code":"DKK","displayName":"Danish krone","symbol":"kr","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.277Z"},{"@odata.etag":"W/\"JzQ0OzU0MXQ0OVlidGxabUNZbCttU2pnSU1UVW5IOW55UlVtNHVTam1LbTljZTg9MTswMDsn\"","id":"700389f5-0917-48b8-a245-a839e97e0b6b","code":"MAD","displayName":"Moroccan dirham","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.517Z"},{"@odata.etag":"W/\"JzQ0O0I4cXliRjdlY3RHbTNKWkJwekMwMVc5TlI4bm1SMGV5NzFhbzBja1haZ2s9MTswMDsn\"","id":"d6c7dc88-3e36-4764-8191-b2d5c96367ad","code":"RSD","displayName":"Serbian Dinar","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.687Z"},{"@odata.etag":"W/\"JzQ0O05DM1ZhdVpJZnBxU1M3ZERuTzliUzlLOWI0MnNsbGd5dEJnRkFrRmZwZDA9MTswMDsn\"","id":"087d1559-6df6-4dd4-8a9f-b2f476e26e05","code":"VUV","displayName":"Vanuatu vatu","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.91Z"},{"@odata.etag":"W/\"JzQ0O3BoZ25SYlNNOUJKQWF0KzEwMWVoS3ZkR0hwN1NVWlNIeXNHVXByUjZwL0k9MTswMDsn\"","id":"2007ecea-e208-47d7-8884-b63ddadb4eae","code":"TND","displayName":"Tunesian dinar","symbol":"","amountDecimalPlaces":"3:3","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.823Z"},{"@odata.etag":"W/\"JzQ0O0RJOUZMSm1aVHQ0S3ZqTVZpMks5OTlqWG5QRmJIaGJ2RzFtTGRpcTlFbnc9MTswMDsn\"","id":"0720c664-9dd1-48f9-9902-bb691bcc3734","code":"SBD","displayName":"Solomon Islands dollar(s)","symbol":"$","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.737Z"},{"@odata.etag":"W/\"JzQ0OzBRYWJXTXlMc0lNa21md2NBSWxKSzNEWFM3OEN2alRJMHBOTWRQRytjWFU9MTswMDsn\"","id":"307bda40-100a-4a5d-8c91-c8fd9e86cd7c","code":"HUF","displayName":"Hungarian forint","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":1,"lastModifiedDateTime":"2019-06-24T17:53:08.4Z"},{"@odata.etag":"W/\"JzQ0O3BudzJQcitacnBUN2krd2kzVTBiNURzKzU3ZjJUZENNbXNtc1ZSWVI1Yk09MTswMDsn\"","id":"d7c6c176-13fd-4d80-92e0-ccee675d9c6f","code":"PLN","displayName":"Polish zloty","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.653Z"},{"@odata.etag":"W/\"JzQ0O2g0cCt5UFFtcWpKNldzNUJHdHU1aGNLYTdGdDZhOVZOdVp0amFwL3B6bk09MTswMDsn\"","id":"878f00eb-4c1b-4e80-8470-d61e0f1de2ea","code":"USD","displayName":"US dollar(s)","symbol":"$","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.893Z"},{"@odata.etag":"W/\"JzQ0O3M0UjM0dHdIblNlREQrcWQ1ZnZ0VmY5V3E2dCtTQm5YajBKbHI3eFJSTlU9MTswMDsn\"","id":"52e76c2f-301d-45c2-b3d8-ddbfa9b37406","code":"AED","displayName":"United Arab Emirates dirham","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.25,"lastModifiedDateTime":"2019-06-24T17:53:08.153Z"},{"@odata.etag":"W/\"JzQ0O053NHZ4V1V1Z29OMXk2NFJOczFSajB4anBOVmxWSEFBLzUyVFFzbHZhUzg9MTswMDsn\"","id":"26f9e80a-8bc1-45a7-97c7-e126449466c7","code":"ISK","displayName":"Icelandic krona","symbol":"kr","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.463Z"},{"@odata.etag":"W/\"JzQ0OzhuNm1NNysxWUwySFJ2eWN1VjI0YlpyQnBKWXlZVDJiakpZTjFpdWN2VG89MTswMDsn\"","id":"75335517-5f87-4808-887a-e474fd8ed096","code":"NGN","displayName":"Nigerian naira","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":1,"lastModifiedDateTime":"2019-06-24T17:53:08.583Z"},{"@odata.etag":"W/\"JzQ0O2NKVTQzdmVyTG9MRjR6K0hVbEVMQWZxa0NyU05vVkVJb3RPbWk5SHptQzQ9MTswMDsn\"","id":"0ddf04bc-44bf-485c-ba5d-e4fddd56df10","code":"IDR","displayName":"Indonesian rupiah","symbol":"","amountDecimalPlaces":"0:0","amountRoundingPrecision":1,"lastModifiedDateTime":"2019-06-24T17:53:08.427Z"},{"@odata.etag":"W/\"JzQ0O2E3eFVMSGRTRkR0Y29sV2VLalZRc0FiOVZ6TFJIRmlSQmQyMWJLalRFVWc9MTswMDsn\"","id":"9dbe6f94-5412-49cf-bbc8-eb8e6a08a6dd","code":"NOK","displayName":"Norwegian krone","symbol":"kr","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.6Z"},{"@odata.etag":"W/\"JzQ0O0JDY3lmS3UwVG9JaVZkM0c1YlRzUUc3b05nUnlmMnJTR1lud01ja1hzNm89MTswMDsn\"","id":"c5a5bd63-1a3b-479f-90e0-ec1fa1d418de","code":"RUB","displayName":"Russian ruble","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.7Z"},{"@odata.etag":"W/\"JzQ0O2hHSXI5bW5BeHNNa0VhbUNVcGxQT3QwejV5VkJLclZPQmhYS1h4TW0yekU9MTswMDsn\"","id":"64349e3b-9a87-4f03-a752-ec8b756908ba","code":"CHF","displayName":"Swiss franc","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.243Z"},{"@odata.etag":"W/\"JzQ0O01yR1o4bGZJZ0FmMzZWK0RRZWx4ODcxS1MxVjVqV2J4eHJad2g0bHZpdWc9MTswMDsn\"","id":"ab553d32-1f22-4c47-bf6c-ee6f41874980","code":"THB","displayName":"Thai baht","symbol":"","amountDecimalPlaces":"0:0","amountRoundingPrecision":1,"lastModifiedDateTime":"2019-06-24T17:53:08.807Z"},{"@odata.etag":"W/\"JzQ0O2ZmQmR3cER1ZWlLY2d1TEQ2YjY1VElpUitPNjRtZUpqUjlRaUYrNjdqODA9MTswMDsn\"","id":"3557c609-3bf1-42be-aa12-f53af000ce9a","code":"NZD","displayName":"New Zealand dollar(s)","symbol":"$","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.617Z"},{"@odata.etag":"W/\"JzQ0O083amhrWlpNWm9jNGFoU2xYSG5PeFluckdna3Y2Yy9jY2wvdmpBT0F5Wnc9MTswMDsn\"","id":"bcc3d126-0f31-45cc-9a85-f7682475f063","code":"WST","displayName":"Western Samoan tala","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.927Z"},{"@odata.etag":"W/\"JzQ0O2poUXJQczRrSWNUS1Vud1ZVUEppSHhiRWtldGpiN1N0aDc2VHlIR3M2cnc9MTswMDsn\"","id":"a0951395-587c-4758-8f71-ff2b4404bbec","code":"TOP","displayName":"Tongan Pa anga","symbol":"","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.843Z"}]}
@@ -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)/currencies/$entity","@odata.etag":"W/\"JzQ0O1IzelhmZ2hZMlQ0RGY0T0dha0JqUDVjR3VtaTNMejMxZ21ZWEl6c3dwNGM9MTswMDsn\"","id":"bfdcbbf1-1357-412c-926f-05d4ddafbbd4","code":"CAD","displayName":"Canadian dollar(s)","symbol":"$","amountDecimalPlaces":"2:2","amountRoundingPrecision":0.01,"lastModifiedDateTime":"2019-06-24T17:53:08.227Z"}
@@ -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)/customers/$entity","@odata.etag":"W/\"JzQ0O1FQazdEcnhqUVR3VVloN2lDaDZQaXRLM0tkSStKYzVJUERvMzBMUE04b0U9MTswMDsn\"","id":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","number":"30000","displayName":"School of Fine Art","type":"Company","phoneNumber":"","email":"meagan.bond@contoso.com","website":"","taxLiable":false,"taxAreaId":"3e8ab4f9-113d-4734-96ff-969bd7a3f313","taxAreaDisplayName":"Other customers and vendors (not MISC)","taxRegistrationNumber":"733495789","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","paymentMethodId":"00000000-0000-0000-0000-000000000000","blocked":" ","lastModifiedDateTime":"2019-06-24T17:53:17.587Z","address":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"customerFinancialDetails":[{"@odata.etag":"W/\"JzQ0OzUrVklhaEt3QkJUUTdJS3JuZXY5bFJoQVREU25ROVZObjdrMzRQUXQ1ZGs9MTswMDsn\"","id":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","number":"30000","balance":95193,"totalSalesExcludingTax":415914,"overdueAmount":95193}]}
@@ -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)/customers/$entity","@odata.etag":"W/\"JzQ0O1FQazdEcnhqUVR3VVloN2lDaDZQaXRLM0tkSStKYzVJUERvMzBMUE04b0U9MTswMDsn\"","id":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","number":"30000","displayName":"School of Fine Art","type":"Company","phoneNumber":"","email":"meagan.bond@contoso.com","website":"","taxLiable":false,"taxAreaId":"3e8ab4f9-113d-4734-96ff-969bd7a3f313","taxAreaDisplayName":"Other customers and vendors (not MISC)","taxRegistrationNumber":"733495789","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","paymentMethodId":"00000000-0000-0000-0000-000000000000","blocked":" ","lastModifiedDateTime":"2019-06-24T17:53:17.587Z","address":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"customerFinancialDetails":[{"@odata.etag":"W/\"JzQ0OzUrVklhaEt3QkJUUTdJS3JuZXY5bFJoQVREU25ROVZObjdrMzRQUXQ1ZGs9MTswMDsn\"","id":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","number":"30000","balance":95193,"totalSalesExcludingTax":415914,"overdueAmount":95193}]}
@@ -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)/customers/$entity","@odata.etag":"W/\"JzQ0O1FQazdEcnhqUVR3VVloN2lDaDZQaXRLM0tkSStKYzVJUERvMzBMUE04b0U9MTswMDsn\"","id":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","number":"30000","displayName":"School of Fine Art","type":"Company","phoneNumber":"","email":"meagan.bond@contoso.com","website":"","taxLiable":false,"taxAreaId":"3e8ab4f9-113d-4734-96ff-969bd7a3f313","taxAreaDisplayName":"Other customers and vendors (not MISC)","taxRegistrationNumber":"733495789","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","paymentMethodId":"00000000-0000-0000-0000-000000000000","blocked":" ","lastModifiedDateTime":"2019-06-24T17:53:17.587Z","address":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"},"customerFinancialDetails":[{"@odata.etag":"W/\"JzQ0OzUrVklhaEt3QkJUUTdJS3JuZXY5bFJoQVREU25ROVZObjdrMzRQUXQ1ZGs9MTswMDsn\"","id":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","number":"30000","balance":95193,"totalSalesExcludingTax":415914,"overdueAmount":95193}]}
@@ -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)/customers","value":[{"@odata.etag":"W/\"JzQ0O1FQazdEcnhqUVR3VVloN2lDaDZQaXRLM0tkSStKYzVJUERvMzBMUE04b0U9MTswMDsn\"","id":"ee8fbd3d-5b83-4c7d-a4d2-4f704ca0c1e3","number":"30000","displayName":"School of Fine Art","type":"Company","phoneNumber":"","email":"meagan.bond@contoso.com","website":"","taxLiable":false,"taxAreaId":"3e8ab4f9-113d-4734-96ff-969bd7a3f313","taxAreaDisplayName":"Other customers and vendors (not MISC)","taxRegistrationNumber":"733495789","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","paymentMethodId":"00000000-0000-0000-0000-000000000000","blocked":" ","lastModifiedDateTime":"2019-06-24T17:53:17.587Z","address":{"street":"10 High Tower","city":"Miami","state":"","countryLetterCode":"US","postalCode":"US-FL 37125"}},{"@odata.etag":"W/\"JzQ0O0pxY0M3bHltSlcyQlhVU2p3S3ZGMnZEZ2lDRjlyRVEwY04xNUhyYTAwU1E9MTswMDsn\"","id":"8790f0e2-28b8-408c-b62a-570ab255edd7","number":"20000","displayName":"Trey Research","type":"Company","phoneNumber":"","email":"mary.kumm@contoso.com","website":"","taxLiable":false,"taxAreaId":"5e96b48b-e330-4091-9146-e823ebac7e44","taxAreaDisplayName":"Domestic customers and vendors","taxRegistrationNumber":"254687456","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","paymentMethodId":"00000000-0000-0000-0000-000000000000","blocked":" ","lastModifiedDateTime":"2019-06-24T17:53:17.517Z","address":{"street":"Southwark Bridge Rd, 91-95","city":"Perth","state":"WA","countryLetterCode":"AU","postalCode":"6800"}},{"@odata.etag":"W/\"JzQ0OzFoRjFJWXBrenJITHFHTk95RFkrOFVlYWFuZDZzWmpTV1lDWHhXd0VmRWc9MTswMDsn\"","id":"8ea3e0c3-7fe4-4021-a5ef-5ce6eec86a67","number":"40000","displayName":"Alpine Ski House","type":"Company","phoneNumber":"","email":"ian.deberry@contoso.com","website":"","taxLiable":false,"taxAreaId":"3e8ab4f9-113d-4734-96ff-969bd7a3f313","taxAreaDisplayName":"Other customers and vendors (not MISC)","taxRegistrationNumber":"533435789","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","paymentMethodId":"00000000-0000-0000-0000-000000000000","blocked":" ","lastModifiedDateTime":"2019-06-24T17:53:17.67Z","address":{"street":"Walter-Gropius-Strasse 5\r\nPark Stadt Schwabing","city":"Munchen","state":"","countryLetterCode":"DE","postalCode":"DE-80807"}},{"@odata.etag":"W/\"JzQ0O1FHdDhzWHpUaWxkU2pGNG5jd1c5dkRrY1JGSDhaMHIwVVB5MU1VMGdVUFE9MTswMDsn\"","id":"b450d7af-0de7-4ad6-9ae6-97d14b9e9a72","number":"10000","displayName":"Adatum Corporation","type":"Company","phoneNumber":"","email":"anthony.lording@contoso.com","website":"","taxLiable":false,"taxAreaId":"5e96b48b-e330-4091-9146-e823ebac7e44","taxAreaDisplayName":"Domestic customers and vendors","taxRegistrationNumber":"789456278","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","paymentMethodId":"00000000-0000-0000-0000-000000000000","blocked":" ","lastModifiedDateTime":"2019-06-24T17:53:17.447Z","address":{"street":"Station Road, 21","city":"42000","state":"SA","countryLetterCode":"AU","postalCode":"5000"}},{"@odata.etag":"W/\"JzQ0O29DYWJUcWlKaUZVdCthK2tXbGRMbnZBcGRSOHQ4ck9icjViNFNZemdZc3c9MTswMDsn\"","id":"cf6cf1de-7340-4b6a-87a3-d7871193aa67","number":"50000","displayName":"Relecloud","type":"Company","phoneNumber":"","email":"mason.kingsley@contoso.com","website":"","taxLiable":false,"taxAreaId":"5e96b48b-e330-4091-9146-e823ebac7e44","taxAreaDisplayName":"Domestic customers and vendors","taxRegistrationNumber":"582048936","currencyId":"00000000-0000-0000-0000-000000000000","currencyCode":"AUD","paymentTermsId":"d42b10ec-e0f8-459d-8d84-4acb4423732b","shipmentMethodId":"00000000-0000-0000-0000-000000000000","paymentMethodId":"00000000-0000-0000-0000-000000000000","blocked":" ","lastModifiedDateTime":"2019-06-24T17:53:17.743Z","address":{"street":"Occam Court, 1\r\nSurrey","city":"Murdunna","state":"TAS","countryLetterCode":"AU","postalCode":"7178"}}]}
@@ -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)/paymentMethods/$entity","@odata.etag":"W/\"JzQ0O25sVVdzM3pGNnFVREFmSit4c29VeWpveVhEcWxQbFNINnp5b0lHemY0ZTA9MTswMDsn\"","id":"a07c9767-f90f-4a4a-9649-11063d8eeb8c","code":"ACCOUNT","displayName":"Payment on account","lastModifiedDateTime":"2019-06-24T17:54:17.537Z"}
@@ -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)/paymentMethods","value":[{"@odata.etag":"W/\"JzQ0O25sVVdzM3pGNnFVREFmSit4c29VeWpveVhEcWxQbFNINnp5b0lHemY0ZTA9MTswMDsn\"","id":"a07c9767-f90f-4a4a-9649-11063d8eeb8c","code":"ACCOUNT","displayName":"Payment on account","lastModifiedDateTime":"2019-06-24T17:54:17.537Z"},{"@odata.etag":"W/\"JzQ0OzEyblVRbyt5U0VWbzNHaUVjcGJqOU9RVDFlQ0FPSE44aXRrZzhGNnd1bzg9MTswMDsn\"","id":"4faf1670-c795-4f4f-a9ba-11a453645890","code":"CHEQUE","displayName":"Cheque payment","lastModifiedDateTime":"2019-06-24T17:54:17.6Z"},{"@odata.etag":"W/\"JzQ0O2UzbksxeHVrWlpFNDlOOHJmK0Z0bzdHK0VJUlI3bm9OanpXTE9jQjcrdUk9MTswMDsn\"","id":"197d3b12-98bd-44a4-a081-1946c3b7b440","code":"BNKCONVINT","displayName":"Bank Data Conversion for International Banks","lastModifiedDateTime":"2019-06-24T17:54:17.567Z"},{"@odata.etag":"W/\"JzQ0OzQ2R2xJVDdIdUFqUTZqbVR2UDVVeFE1VFluUDdZNFFQYWhQU1pRbG14Yzg9MTswMDsn\"","id":"9d2eb121-859f-43e6-b790-19ceac0c2420","code":"MULTIPLE","displayName":"Multiple payment methods","lastModifiedDateTime":"2019-06-24T17:54:17.623Z"},{"@odata.etag":"W/\"JzQ0O2RVTWd1cHd2Qlk4TC85YzIvWEY2dmVvN2d4Sy9taUxtZFN1RGkwRVFkMDA9MTswMDsn\"","id":"641de84b-e669-4d60-9125-368297049d78","code":"WORLDPAY","displayName":"WorldPay payment","lastModifiedDateTime":"0001-01-01T00:00:00Z"},{"@odata.etag":"W/\"JzQ0O3NhNzVjcWRVUVd6U1BMWDNVV043WmtPUUJsWDRrL0YydTMwdENGM3FtYUE9MTswMDsn\"","id":"52c0d711-6093-4115-810d-3fca926a7599","code":"CASH","displayName":"Cash payment","lastModifiedDateTime":"2019-06-24T17:54:17.59Z"},{"@odata.etag":"W/\"JzQ0O3FZbVlXYjZLZWk1cVRadjdCQUJpNFRkbndNS3p1L0N1Z1NsdDNlYi9zNVE9MTswMDsn\"","id":"e384e825-7b3b-429a-bf38-45d834ac5012","code":"PAYPAL","displayName":"PayPal payment","lastModifiedDateTime":"0001-01-01T00:00:00Z"},{"@odata.etag":"W/\"JzQ0O3lyaDNWd3Y3MnkzWjJoWmp3amgxdFc5YzYxaUY3VStVUTdWQko5VlZhd3c9MTswMDsn\"","id":"b965a20c-e316-425e-9b3c-74ac877dd67f","code":"INTERCOM","displayName":"Intercompany payment","lastModifiedDateTime":"2019-06-24T17:54:17.617Z"},{"@odata.etag":"W/\"JzQ0O1VNQWtmZEJiWHdSYktZbUFjMGpreENJbWVVanNPQmtOWVdtRmVTcDRiU289MTswMDsn\"","id":"b001676c-7501-49b4-a1bb-7a02589ecce0","code":"GIRO","displayName":"Giro transfer","lastModifiedDateTime":"2019-06-24T17:54:17.607Z"},{"@odata.etag":"W/\"JzQ0O1FVQWUvR29vZHRnc3FDa0UzN3Q3Y1pFZDUyWXp4OEdXRGpqUjBLQit2b2M9MTswMDsn\"","id":"e640687a-9a47-465e-b677-b057027801d3","code":"CARD","displayName":"Card payment","lastModifiedDateTime":"2019-06-24T17:54:17.577Z"},{"@odata.etag":"W/\"JzQ0O2tzY25rb2xtdmgxZFRnMEZhcEV3a21FVjI3VDVVUUpwWThuQVQ1Ni8yeTA9MTswMDsn\"","id":"b1e34c59-d0b3-4d52-b6ef-dc61ca410e98","code":"BANK","displayName":"Bank Transfer","lastModifiedDateTime":"2019-06-24T17:54:17.547Z"},{"@odata.etag":"W/\"JzQ0O2xwMkg5U2x4TWJCYTlrNGR4dTJQRy9DUGMzTVNydlNOOHRGNkZVb1BDOWM9MTswMDsn\"","id":"d676cd8c-6b97-4e2c-9e6c-eed3830e5ef1","code":"BNKCONVDOM","displayName":"Bank Data Conversion for Domestic Banks","lastModifiedDateTime":"2019-06-24T17:54:17.557Z"}]}
@@ -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)/paymentTerms/$entity","@odata.etag":"W/\"JzQ0O0RFaXVOMS9YSHc2S2JXQ3VvSVEwTnpad0FhRU95QnFVSFphWFBJaVgvRTQ9MTswMDsn\"","id":"9e846824-c73a-4649-b827-138b941781c2","code":"7 DAYS","displayName":"Net 7 days","dueDateCalculation":"7D","discountDateCalculation":"","discountPercent":0,"calculateDiscountOnCreditMemos":false,"lastModifiedDateTime":"2019-06-24T17:53:08.09Z"}