{"info":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","description":"<html><head></head><body><p>The HyperAccounts API for Sage 50 Accounts (desktop) uses REST principles to make it easy for third party developers to Create, Read, Update and Search Records in the Sage Database in real-time. All data sent to it or received from it will be in a JSON format.</p>\n<h1 id=\"optional-fields\">Optional Fields</h1>\n<p>If you want to clear the value you must pass an empty string as the value. missing properties or null values will be ignored to prevent data loss by customers that accidentally miss a field, maybe from having an older version of the API.</p>\n<p>Other optional types can either be omitted completely or set to null.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>The API uses Simple API Key for authentication. This requires all requests to have an <code>AuthToken</code> Header with the customers unique token in each request or a 403 forbidden error will be returned.</p>\n<p>Please contact Hyperext support via <a href=\"https://mailto:support@hyperext.com\">support@hyperext.com</a> to obtain your unique token if you do not already have it.</p>\n<h1 id=\"search-requests\">SEARCH Requests</h1>\n<p>All searchable fields are available in our schema. The API will mirror the date format/system locale set on the environment that hosts the API.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"field\" // Sage table field i.e RECORD_MODIFY_DATE, ACCOUNT_REF etc\n\"type\" // See explanation below\n\"value\" // The value to match in the search\n\"or\" // Optional, bool. Needs to be included in first filter and set to true\n\n</code></pre>\n<p>The <code>type</code> field accepts any of the following string values</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"lte\" // Less than or equal\n\"lt\" // Less than\n\"eq\" // Equal\n\"ne\" // Not Equal\n\"gt\" // Greater than\n\"gte\" // greater than or equal\n\"like\" // combined with wildcard search e.g. ACCOUNT_REF LIKE 'TEST%'\n\"nlike\" // Not Like\n\"in\" // eg “value”:“(‘accountRef’,‘accountRef’,‘accountRef’)”\n\"nin\" // Not In\n\n</code></pre>\n<p>If you have multiple filters in the same request, the API will use <code>AND</code> to connect the requests. If you wish to use <code>OR</code> you need to include \"or\" in the first filter and set to true. If set to false or not included in the first line, the API will use <code>AND</code> to connect requests.</p>\n<p>An example of an <code>OR</code> query is shown below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"field\": \"ADDRESS_3\",\n    \"type\": \"like\",\n    \"value\": \"Blackpool\",\n    \"or\": true\n  },\n  {\n    \"field\": \"ADDRESS_4\",\n    \"type\": \"like\",\n    \"value\": \"Northumberland\"\n  }\n]\n\n</code></pre>\n<h1 id=\"change-log\">Change Log</h1>\n<h2 id=\"release-12700\">Release 1.27.0.0</h2>\n<ul>\n<li><p>Added new endpoint - api/productImage</p>\n</li>\n<li><p>Added new endpoint - api/trialBalance/{{date}}</p>\n</li>\n<li><p>Added new endpoint - api/allocateCreditOnAccount</p>\n</li>\n<li><p>Added new endpoint - api/salesOrder/Update</p>\n</li>\n<li><p>Added new endpoint - api/purchaseOrder/Update</p>\n</li>\n<li><p>Added new endpoint - api/purchaseOrder/{id}/updateLedgers</p>\n</li>\n<li><p>Added new endpoint - api/purchaseOrderItems</p>\n</li>\n<li><p>Added field \"unitPrice\" to endpoint - api/salesOrderItems</p>\n</li>\n<li><p>Changes to endpoint - api/goodsReceivedNotes so cant create GRN if PO is open in UI</p>\n</li>\n<li><p>Fixed bug on endpoint - api/goodsReceivedNotes</p>\n</li>\n<li><p>Added field \"categoryTitle\" to endpoint - api/coa</p>\n</li>\n<li><p>Added field \"postedCode\" to endpoint - api/purchaseOrder/{{orderNumber}}</p>\n</li>\n<li><p>Added nlike (not like) functionality in search</p>\n</li>\n<li><p>Added nin (not in) functionality in search</p>\n</li>\n</ul>\n<h2 id=\"release-12610\">Release 1.26.1.0</h2>\n<ul>\n<li><p>Added field \"instrastatImportDutyCode\" to endpoint - api/searchProduct</p>\n</li>\n<li><p>Fixed bug with field \"fillGlobalsFromCustomerDefaults on endpoint -api/salesOrder/</p>\n</li>\n<li><p>Changed response text on DELETE sales order endpoint - api/salesOrder/{{orderNumber}} if order is already completed</p>\n</li>\n<li><p>Changed response text on DELETE purchase order endpoint - api/purchaseOrder/{{orderNumber}} if order is already completed</p>\n</li>\n<li><p>Added field \"reorderLevel\" to endpoint - api/product</p>\n</li>\n<li><p>Added field \"reorderQty\" to endpoint - api/product</p>\n</li>\n<li><p>Changes to endpoint - api/goodsReceivedNotes</p>\n</li>\n<li><p>Added OR functionality to search endpoints</p>\n</li>\n</ul>\n<h2 id=\"release-12600\">Release 1.26.0.0</h2>\n<ul>\n<li><p>Added Webhooks</p>\n</li>\n<li><p>Added new endpoint - api/searchCustomAlert</p>\n</li>\n<li><p>Added new endpoint - api/data</p>\n</li>\n<li><p>Fixed bug on endpoint - api/purchaseorder</p>\n</li>\n<li><p>Added field \"date\" to endpoint - api/goodsReceivedNotes</p>\n</li>\n<li><p>Added field \"supplierGrnNumber\" to endpoint - api/goodsReceivedNotes</p>\n</li>\n</ul>\n<h2 id=\"release-12510\">Release 1.25.1.0</h2>\n<ul>\n<li><p>Added field \"incoTerms\" to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added field incoTermsText\"to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added field \"incoTerms\" to endpoint - api/searchPurchaseLedger</p>\n</li>\n<li><p>Added field incoTermsText\"to endpoint - api/searchPurchaseLedger</p>\n</li>\n<li><p>Added new endpoint - api/server</p>\n</li>\n<li><p>Changes to endpoint - api/salesOrderPartialDespatch which will now allow partial invoice creation if pass \"invoice\" in header request</p>\n</li>\n</ul>\n<h2 id=\"release-12500\">Release 1.25.0.0</h2>\n<ul>\n<li><p>Added new endpoint - /api/salesOrderDeAllocation/{{id}}</p>\n</li>\n<li><p>Changes to PATCH endpoint - api/salesorder/ to allow to reduce line item quantity</p>\n</li>\n<li><p>Added optional header on endpoint - api/salesOrder/{{id}}/complete when passing through \"gdn\" in header request it will return GDN Number instead of invoice number</p>\n</li>\n<li><p>Changes to endpoint endpoint - api/salesOrder/{{id}}/complete which will now fill in \"Invoice Number\" box in Sage with the invoice number created</p>\n</li>\n<li><p>Changes to endpoint endpoint - api/salesOrderComplete which will now fill in \"Invoice Number\" box in Sage with the invoice number created</p>\n</li>\n<li><p>Changes to endpoint endpoint - api/salesOrderPartialDespatch when passing through \"gdn\" in header request it will return GDN Number</p>\n</li>\n<li><p>Changes to endpoint - api/salesOrderPartialAllocation to allow S1 and S3 stock codes</p>\n</li>\n<li><p>Changes to endpoint - api/salesOrderPartialDespatch to allow S1 and S3 stock codes</p>\n</li>\n<li><p>Fixed bug on endpoint - api/searchStock</p>\n</li>\n<li><p>Added field \"countryCode\" to endpoint - api/salesOrder/</p>\n</li>\n<li><p>Added field \"countryCode\" to endpoint - api/salesOrder/{{orderNumber}}</p>\n</li>\n</ul>\n<h2 id=\"release-12400\">Release 1.24.0.0</h2>\n<ul>\n<li><p>Added optional HTTP Error Status responses when passing through \"new-response\" in header request</p>\n</li>\n<li><p>Added field \"stockCatName\" to endpoint - api/searchProduct</p>\n</li>\n<li><p>Added field \"countryCodeOfOrigin\" to endpoint - api/product</p>\n</li>\n<li><p>Added field \"countryCodeOfOrigin\" to endpoint -api/product/{{stockCode}}</p>\n</li>\n<li><p>Added field \"status\" to endpoint api/salesOrder/{{orderNumber}}</p>\n</li>\n<li><p>Added field \"priorYear\" to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added new endpoint - api/salesOrderPartialAllocation</p>\n</li>\n<li><p>Added new endpoint - api/salesOrderPartialDespatch</p>\n</li>\n<li><p>Added new endpoint - api/salesordercomplete</p>\n</li>\n</ul>\n<h2 id=\"release-12310\">Release 1.23.1.0</h2>\n<ul>\n<li><p>Added field \"qtyLastStockTake\" to endpoint - api/searchProduct</p>\n</li>\n<li><p>Added field \"stockTakeDate\" to endpoint - api/searchProduct</p>\n</li>\n<li><p>Added field \"lastInvDate\" to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added field \"taxRate1\" to endpoint - api/searchSalesOrder</p>\n</li>\n<li><p>Added field \"orderOrQuote\" to endpoint - api/searchSalesOrder</p>\n</li>\n<li><p>Added field \"unitOfSale\" to endpoint - api/searchSopItem</p>\n</li>\n<li><p>Added field \"taxRate\" to endpoint - api/searchSopItem</p>\n</li>\n<li><p>Added field \"recordCreateDate\" to endpoint - api/searchSopItem</p>\n</li>\n<li><p>Added field \"recordModifyDate\" to endpoint - api/searchSopItem</p>\n</li>\n<li><p>Added field \"recordCreateDate\" to endpoint - api/searchCustomerAddress</p>\n</li>\n<li><p>Added field \"recordModifyDate\" to endpoint - api/searchCustomerAddress</p>\n</li>\n</ul>\n<h2 id=\"release-12300\">Release 1.23.0.0</h2>\n<ul>\n<li><p>Added new endpoint - api/status</p>\n</li>\n<li><p>Added field \"accountStatus\" to endpoint - api/supplier</p>\n</li>\n<li><p>Added field \"onHold\" to endpoint - api/supplier</p>\n</li>\n<li><p>Added field \"accountStatus\" to endpoint - api/supplier/{accountRef}</p>\n</li>\n<li><p>Added field \"onHold\" to endpoint - api/supplier/{accountRef}</p>\n</li>\n<li><p>Added field \"reference\" to endpoint - api/purchaseOrder</p>\n</li>\n<li><p>Added field \"reference\" to endpoint - api/purchaseOrder/{{id}}</p>\n</li>\n</ul>\n<h2 id=\"release-12250\">Release 1.22.5.0</h2>\n<ul>\n<li><p>Added field \"webPublish\" to endpoint - api/product</p>\n</li>\n<li><p>Added field \"dueDate\" to endpoint - api/salesOrder/</p>\n</li>\n<li><p>Added field \"dueDate\" to endpoint - api/salesOrder/{{orderNumber}}</p>\n</li>\n<li><p>Changes to endpoint - api/salesOrder/{{orderNumber}} for fields \"itemsNet\" and \"itemsTax\" to show BASE currency amounts</p>\n</li>\n<li><p>Added field \"foreignItemsNet\" to endpoint - api/salesOrder/{{orderNumber}}</p>\n</li>\n<li><p>Added field \"foreignItemsTax\" to endpoint - api/salesOrder/{{orderNumber}}</p>\n</li>\n<li><p>Added field \"foreignItemsNet\" to endpoint - api/searchSalesOrder</p>\n</li>\n<li><p>Added field \"foreignItemsTax\" to endpoint - api/searchSalesOrder</p>\n</li>\n<li><p>Fixed bug on endpoint - api/searchSopItem</p>\n</li>\n</ul>\n<h2 id=\"release-12240\">Release 1.22.4.0</h2>\n<ul>\n<li><p>Fixed bug on endpoint - api/allocatePaymentOnAccount</p>\n</li>\n<li><p>Added field \"creditPosition\" to endpoint - api/customer/</p>\n</li>\n<li><p>Changes to PATCH endpoint - api/purchaseOrder/ allowing updates after marked as \"ON-ORDER\"</p>\n</li>\n</ul>\n<h2 id=\"release-12230\">Release 1.22.3.0</h2>\n<ul>\n<li><p>Fixed bug on endpoint - api/allocatePaymentOnAccount</p>\n</li>\n<li><p>Fixed bug on endpoint - api/salesOrder/{{id}}/fullyAllocate</p>\n</li>\n</ul>\n<h2 id=\"release-12220\">Release 1.22.2.0</h2>\n<ul>\n<li><p>Fixed foreign rate issue on endpoint - api/transactionPost</p>\n</li>\n<li><p>Changes to PATCH endpoint - api/salesorder/ stopping updates if been marked as allocated, dispatched, on order or delivered</p>\n</li>\n<li><p>Changes to PATCH endpoint - api/purchaseOrder/ stopping updates if been marked as allocated, dispatched, on order or delivered</p>\n</li>\n<li><p>Added new endpoint to show if RDA enabled - api/setup</p>\n</li>\n<li><p>Added field \"lockDate\" to endpoint - api/company</p>\n</li>\n<li><p>Fixed bug on endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added field \"foreignNetAmount\" to endpoint - api/searchInvoiceItem</p>\n</li>\n</ul>\n<h2 id=\"release-12200\">Release 1.22.0.0</h2>\n<ul>\n<li><p>Added field \"termsAgreed\" to endpoint - api/supplier/{{supplier}</p>\n</li>\n<li><p>Added new endpoint - api/courier</p>\n</li>\n<li><p>Fixed bug on endpoint - api/salesOrder/{{id}}/fullyAllocate</p>\n</li>\n<li><p>Added field \"name\" to endpoint - api/searchInvoice</p>\n</li>\n<li><p>Added field \"name\" to endpoint - api/salesInvoice/{{id}}</p>\n</li>\n<li><p>Added field \"name\" to endpoint - api/salesInvoice/</p>\n</li>\n</ul>\n<h2 id=\"release-12100\">Release 1.21.0.0</h2>\n<ul>\n<li><p>Added field \"dueDate\" to endpoint - api/purchaseOrder/</p>\n</li>\n<li><p>Fixed bug on endpoint - api/searchProduct</p>\n</li>\n<li><p>Added fields \"analysis4\" to \"analysis6\" to endpoint -api/searchSalesLedger</p>\n</li>\n<li><p>Added fields \"analysis4\" to \"analysis6\" to endpoint -api/customer/{{customer}}</p>\n</li>\n<li><p>Added fields \"analysis4\" to \"analysis6\" to endpoint -api/customer/</p>\n</li>\n<li><p>Added ability to do IN search requests</p>\n</li>\n<li><p>Added new endpoint - api/searchProjectTran</p>\n</li>\n</ul>\n<h2 id=\"release-12030\">Release 1.20.3.0</h2>\n<ul>\n<li>Fixed field type bug on endpoint - api/searchSalesLedger</li>\n</ul>\n<h2 id=\"release-12020\">Release 1.20.2.0</h2>\n<ul>\n<li><p>Added field \"linkLevel\" to endpoint - api/product</p>\n</li>\n<li><p>Added field \"linkLevel\" to endpoint - api/product/{{stockCode}}</p>\n</li>\n<li><p>Added field \"companyRegistrationNumber\" to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added field \"companyRegistrationNumber\" to endpoint - searchPurchaseLedger</p>\n</li>\n<li><p>Added field \"lastDiscPurchasePrice\" to endpoint - api/searchProduct</p>\n</li>\n<li><p>Added field \"lastDiscPurchasePrice\" to endpoint - api/product/{{stockCode}}</p>\n</li>\n<li><p>Added field \"lastDiscPurchasePrice\" to endpoint - api/product</p>\n</li>\n<li><p>Added field \"tradeContact\" to endpoint - api/searchPurchaseLedger</p>\n</li>\n<li><p>Added field \"tradeContact\" to endpoint - api/supplier/{{supplier}}</p>\n</li>\n<li><p>Added field \"tradeContact\" to endpoint - api/supplier</p>\n</li>\n<li><p>Added field \"telephone2\" to endpoint - api/searchPurchaseLedger</p>\n</li>\n<li><p>Added field \"telephone2\" to endpoint - api/supplier/{{supplier}}</p>\n</li>\n<li><p>Added field \"telephone2\" to endpoint - api/supplier</p>\n</li>\n</ul>\n<h2 id=\"release-12010\">Release 1.20.1.0</h2>\n<ul>\n<li>Fixed foreign rate issue on endpoint - api/transactionPost</li>\n</ul>\n<h2 id=\"release-12000\">Release 1.20.0.0</h2>\n<ul>\n<li><p>Added new endpoint - api/searchStock</p>\n</li>\n<li><p>Added endpoint PATCH - api/customerAddress</p>\n</li>\n<li><p>Added field \"eoriNumber\" to endpoint - api/supplier</p>\n</li>\n<li><p>Added field \"eoriNumber\" to endpoint - api/supplier/{{supplier}}</p>\n</li>\n<li><p>Added field \"eoriNumber\" to endpoint - api/searchPurchaseLedger</p>\n</li>\n<li><p>Added field \"addressType\" to endpoint - api/customerAddress/{{customer}}/{{addressID}}</p>\n</li>\n<li><p>Fixed round issue on endpoint - api/transactionPost</p>\n</li>\n<li><p>Fixed foreign rate issue on endpoint - api/transactionPost</p>\n</li>\n<li><p>Increased field \"description\" on endpoint - api/salesInvoice/ to allow 120 for V29 or newer</p>\n</li>\n</ul>\n<h2 id=\"release-11900\">Release 1.19.0.0</h2>\n<ul>\n<li><p>Added field \"creditLimit\" to endpoint - api/supplier</p>\n</li>\n<li><p>Added endpoint - api/searchProjectTransaction</p>\n</li>\n<li><p>Change to endpoint - api/allocatePaymentOnAccount to resolve Sage foreignRate bug</p>\n</li>\n<li><p>Added field \"currency\" to endpoint - api/allocatePaymentOnAccount</p>\n</li>\n</ul>\n<h2 id=\"release-11830\">Release 1.18.3.0</h2>\n<ul>\n<li><p>Added fields “address1” to “address5” to endpoint - api/searchPurchaseOrder</p>\n</li>\n<li><p>Added fields “address1” to “address5” to endpoint - api/purchaseOrder/{{orderNumber}}</p>\n</li>\n<li><p>Added fields “address1” to “address5” to endpoint - api/purchaseOrder</p>\n</li>\n<li><p>Added field \"userName\" to endpoint - api/purchaseInvoice</p>\n</li>\n</ul>\n<h2 id=\"release-11820\">Release 1.18.2.0</h2>\n<ul>\n<li><p>Added fields “analysis1” to “analysis3” to endpoint - api/searchPurchaseOrder</p>\n</li>\n<li><p>Added fields “analysis1” to “analysis3” to endpoint - api/purchaseOrder</p>\n</li>\n<li><p>Added fields “analysis1” to “analysis3” to endpoint - api/purchaseOrder/{{orderNumber}}</p>\n</li>\n</ul>\n<h2 id=\"release-11810\">Release 1.18.1.0</h2>\n<ul>\n<li><p>Fixed bug on endpoint api/salesOrder/{{id}}/fullyAllocate</p>\n</li>\n<li><p>Added field \"addressTypeName\" to endpoint - api/searchCustomerAddress</p>\n</li>\n<li><p>Added field \"addressType\" to endpoint - api/searchCustomerAddress</p>\n</li>\n</ul>\n<h2 id=\"release-11800\">Release 1.18.0.0</h2>\n<ul>\n<li><p>Fixed bug on endpoint api/searchInvoiceItem</p>\n</li>\n<li><p>Added new Read Pricelists endpoint - api/priceList</p>\n</li>\n</ul>\n<h2 id=\"release-117190\">Release 1.17.19.0</h2>\n<ul>\n<li>Fixed bug on PATCH api/salesorder/</li>\n</ul>\n<h2 id=\"release-117180\">Release 1.17.18.0</h2>\n<ul>\n<li><p>Added fields “analysis1” to “analysis3” to endpoint - api/searchSalesOrder</p>\n</li>\n<li><p>Added field “recordCreateDate\" to endpoint - api/searchSalesOrder</p>\n</li>\n<li><p>Added field “recordModifyDate\" to endpoint - api/searchSalesOrder</p>\n</li>\n<li><p>Fixed bug on endpoint - api/transactionPost to allow apostrophes in field \"accountRef\"</p>\n</li>\n<li><p>Added new endpoint - api/salesOrderItems</p>\n</li>\n<li><p>Increased field \"description\" on endpoint - api/salesOrder/ to allow 120 for V29 or newer</p>\n</li>\n</ul>\n<h2 id=\"release-117170\">Release 1.17.17.0</h2>\n<ul>\n<li><p>Fixed bug with componentCodes on endpoint - api/product</p>\n</li>\n<li><p>Added endpoint - api/salesorder/{{id}}/hold to mark sales order as “HELD”</p>\n</li>\n<li><p>Added field \"inactiveFlag\" to endpoint - api/nominal/</p>\n</li>\n<li><p>Fixed bug with foreign rates on endpoint - api/batchtransactionPost</p>\n</li>\n<li><p>Added field “dueDate” to endpoint - api/transactionPost</p>\n</li>\n<li><p>Added field “dueDate” to endpoint - api/batchtransactionPost</p>\n</li>\n<li><p>Added field \"agedBalance\" to endpoint - api/search/auditHeaders</p>\n</li>\n</ul>\n<h2 id=\"release-117160\">Release 1.17.16.0</h2>\n<ul>\n<li><p>Fixed bug with field componentQty on endpoint - api/product to accept decimal values</p>\n</li>\n<li><p>Added Default Supplier Nominal to automatically populate when creating supplier if set in Sage Defaults</p>\n</li>\n<li><p>Added currency check to endpoint POST api/salesOrder/</p>\n</li>\n</ul>\n<h2 id=\"release-117150\">Release 1.17.15.0</h2>\n<ul>\n<li><p>Fixed bug with componentCodes on endpoint - api/product</p>\n</li>\n<li><p>Fixed bug with allocating payments on endpoint - api/transactionPost</p>\n</li>\n</ul>\n<h2 id=\"release-117140\">Release 1.17.14.0</h2>\n<ul>\n<li><p>Fixed bug with response code on endpoint - /api/supplier/{{ID}}</p>\n</li>\n<li><p>Fixed discount issue on endpoint - api/salesInvoice</p>\n</li>\n<li><p>Added field \"lastPaymentDate\" to endpoint api/searchSalesLedger</p>\n</li>\n<li><p>Added Default Purchase Nominal to automatically populate when creating product if set in Sage Defaults</p>\n</li>\n</ul>\n<h2 id=\"release-117120\">Release 1.17.12.0</h2>\n<ul>\n<li>Internal Build</li>\n</ul>\n<h2 id=\"release-117110\">Release 1.17.11.0</h2>\n<ul>\n<li>Internal Build</li>\n</ul>\n<h2 id=\"release-117100\">Release 1.17.10.0</h2>\n<ul>\n<li>Internal Build</li>\n</ul>\n<h2 id=\"release-11790\">Release 1.17.9.0</h2>\n<ul>\n<li>Internal Build</li>\n</ul>\n<h2 id=\"release-11780\">Release 1.17.8.0</h2>\n<ul>\n<li><p>Added new endpoint Update Exchange Rates - api/currency</p>\n</li>\n<li><p>Fixed bug with field \"externalFileURL\" on endpoint - api/purchaseInvoice</p>\n</li>\n</ul>\n<h2 id=\"release-11770\">Release 1.17.7.0</h2>\n<ul>\n<li>Added field \"customerTelephoneNumber\" to endpoint - api/searchSalesOrder</li>\n</ul>\n<h2 id=\"release-11760\">Release 1.17.6.0</h2>\n<ul>\n<li><p>Added field \"ignoreCustomerDiscountRate\" to Create Sales Invoice - api/salesInvoice/</p>\n</li>\n<li><p>Added field \"paymentDueFrom\" to endpoint - api/supplier</p>\n</li>\n<li><p>Added field \"paymentDueFrom\" to endpoint - api/customer/</p>\n</li>\n<li><p>Changed response on endpoint api/allocatePaymentOnAccount to show GBP amount</p>\n</li>\n<li><p>Fixed currency check issue on endpoint - api/salesInvoice/</p>\n</li>\n</ul>\n<h2 id=\"release-11740\">Release 1.17.4.0</h2>\n<ul>\n<li>Fixed bug on with foreign rates on endpoint - api/transactionPost</li>\n</ul>\n<h2 id=\"release-11730\">Release 1.17.3.0</h2>\n<ul>\n<li><p>Fixed bug on endpoint - api/transactionPost</p>\n</li>\n<li><p>Fixed bug on endpoint - api/product</p>\n</li>\n</ul>\n<h2 id=\"release-11720\">Release 1.17.2.0</h2>\n<ul>\n<li>Fixed bug on endpoint - api/transactionPost</li>\n</ul>\n<h2 id=\"release-11710\">Release 1.17.1.0</h2>\n<ul>\n<li>Fixed bug with Single user mode</li>\n</ul>\n<h2 id=\"release-11700\">Release 1.17.0.0</h2>\n<ul>\n<li>Single user mode added</li>\n</ul>\n<h2 id=\"release-11620\">Release 1.16.2.0</h2>\n<ul>\n<li><p>Fixed bug on endpoint - api/transactionPost</p>\n</li>\n<li><p>Added new endpoint - api/batchTransactionPost</p>\n</li>\n<li><p>Added new endpoint - api/stockCat</p>\n</li>\n</ul>\n<h2 id=\"release-11510\">Release 1.15.1.0</h2>\n<ul>\n<li><p>Added field \"email4\" to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added field \"email5\" to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added field \"email6\" to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added field \"email4\" to endpoint - api/customer/{{ID}}</p>\n</li>\n<li><p>Added field \"email5\" to endpoint - api/customer/{{ID}}</p>\n</li>\n<li><p>Added field \"email6\" to endpoint - api/customer/{{ID}}</p>\n</li>\n<li><p>Added field \"email4\" to endpoint - api/customer/</p>\n</li>\n<li><p>Added field \"email5\" to endpoint - api/customer/</p>\n</li>\n<li><p>Added field \"email6\" to endpoint - api/customer/</p>\n</li>\n</ul>\n<h2 id=\"release-11500\">Release 1.15.0.0</h2>\n<ul>\n<li>Added endpoint - api/country</li>\n</ul>\n<h2 id=\"release-11420\">Release 1.14.2.0</h2>\n<ul>\n<li><p>Added field \"bacsRef\" to endpoint - api/customer/{{customer}}</p>\n</li>\n<li><p>Added field \"iban\" to endpoint - api/customer/{{customer}}</p>\n</li>\n<li><p>Added field \"bicSwift\" to endpoint - api/customer/{{customer}}</p>\n</li>\n<li><p>Added field \"rollNumber\" to endpoint - api/customer/{{customer}}</p>\n</li>\n<li><p>Added fields \"additionalRef1\" to \"additionalRef3\" to endpoint - api/customer/{{customer}}</p>\n</li>\n<li><p>Added field \"bacsRef\" to endpoint - api/customer/</p>\n</li>\n<li><p>Added field \"iban\" to endpoint - api/customer/</p>\n</li>\n<li><p>Added field \"bicSwift\" to endpoint - api/customer/</p>\n</li>\n<li><p>Added field \"rollNumber\" to endpoint - api/customer/</p>\n</li>\n<li><p>Added fields \"additionalRef1\" to \"additionalRef3\" to endpoint - api/customer/</p>\n</li>\n<li><p>Added field \"bacsRef\" to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added field \"iban\" to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added field \"bicSwift\" to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added field \"rollNumber\" to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added fields \"additionalRef1\" to \"additionalRef3\" to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added field \"paymentType\" to endpoint - api/searchSalesLedger</p>\n</li>\n</ul>\n<h2 id=\"release-11410\">Release 1.14.1.0</h2>\n<ul>\n<li><p>Added field \"qtyOnOrder\" to endpoint - api/product/{{ID}}</p>\n</li>\n<li><p>Fixed bug for apostrophes on account references on endpoints api/paymentOnAccount and api/transactionPost</p>\n</li>\n<li><p>Changes to field \"description\" on endpoint - api/purchaseOrder to increase character length to 120. Anything over 120 will go into comment1 and then into comment2</p>\n</li>\n<li><p>Added field \"recordCreateDate\" to endpoint - api/searchInvoiceItem</p>\n</li>\n<li><p>Added field \"stockCode\" to endpoint - api/searchInvoiceItem</p>\n</li>\n</ul>\n<h2 id=\"release-11400\">Release 1.14.0.0</h2>\n<ul>\n<li>Added endpoint - api/salesOrder/{{id}}/fullyAllocate</li>\n</ul>\n<h2 id=\"release-11310\">Release 1.13.1.0</h2>\n<ul>\n<li><p>Added field \"email2\" to endpoint - api/supplier/{{ID}}</p>\n</li>\n<li><p>Added field \"email3\" to endpoint - api/supplier/{{ID}}</p>\n</li>\n<li><p>Added field \"email2\" to endpoint - api/supplier</p>\n</li>\n<li><p>Added field \"email3\" to endpoint - api/supplier</p>\n</li>\n</ul>\n<h2 id=\"release-11300\">Release 1.13.0.0</h2>\n<ul>\n<li><p>Added endpoint - api/fixedAssets</p>\n</li>\n<li><p>Added endpoint - api/searchfixedAsset</p>\n</li>\n<li><p>Added endpoint - api/fixedAssets/{{ID}}</p>\n</li>\n</ul>\n<h2 id=\"release-11203\">Release 1.12.0.3</h2>\n<ul>\n<li>Fixed bug on endpoint - api/goodsReceivedNotes</li>\n</ul>\n<h2 id=\"release-11202\">Release 1.12.0.2</h2>\n<ul>\n<li>Fixed bug for SR &amp; PP transactions on endpoint api/transactionPost</li>\n</ul>\n<h2 id=\"release-11201\">Release 1.12.0.1</h2>\n<ul>\n<li><p>Added fields “address1” to “address5” to endpoint api/project</p>\n</li>\n<li><p>Added fields \"turnoverYtd\" to endpoint api/customer/{{customer}}</p>\n</li>\n</ul>\n<h2 id=\"release-11200\">Release 1.12.0.0</h2>\n<ul>\n<li><p>Fixed bug on endpoint - api/transactionPost</p>\n</li>\n<li><p>Added field \"paymentDueDays\" to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added field \"bankRef\" to endpoint - api/salesOrder/</p>\n</li>\n<li><p>Added endpoint - api/searchCustomerAddress</p>\n</li>\n</ul>\n<h2 id=\"release-11102\">Release 1.11.0.2</h2>\n<ul>\n<li><p>Changes on endpoint - api/allocatePaymentOnAccount to field \"invRef\" now string instead of number</p>\n</li>\n<li><p>Fixed bug for unclean disconnect on endpoint - api/project</p>\n</li>\n<li><p>Changes on endpoint - api/customer/ to field \"name\" now no minimum characters</p>\n</li>\n</ul>\n<h2 id=\"release-11101\">Release 1.11.0.1</h2>\n<ul>\n<li>Changes on endpoint - api/transactionPost to ignore deleted transactions when allocating payments for PP or SR</li>\n</ul>\n<h2 id=\"release-11100\">Release 1.11.0.0</h2>\n<ul>\n<li><p>Added new endpoint – api/projectBudgets</p>\n</li>\n<li><p>Added field “deptNumber” to endpoint - api/transactionPost</p>\n</li>\n<li><p>Deprecated endpoint - api/salesInvoice/{invoiceNumber}/receipts</p>\n</li>\n</ul>\n<h2 id=\"release-11012\">Release 1.10.1.2</h2>\n<ul>\n<li>Changed endpoint - api/projectCostCode to use ODBC rather than SDO</li>\n</ul>\n<h2 id=\"release-11011\">Release 1.10.1.1</h2>\n<ul>\n<li>Fixed bug on endpoint - api/projectCostCode</li>\n</ul>\n<h2 id=\"release-11010\">Release 1.10.1.0</h2>\n<ul>\n<li>Added record ID to be returned when creating Cost Code on endpoint - api/projectCostCode</li>\n</ul>\n<h2 id=\"release-11002\">Release 1.10.0.2</h2>\n<ul>\n<li>Fixed bug on endpoint - api/goodsReceivedNotes</li>\n</ul>\n<h2 id=\"release-11001\">Release 1.10.0.1</h2>\n<ul>\n<li>Fixed bug on endpoint - api/searchGoodsReceivedNotes</li>\n</ul>\n<h2 id=\"release-11000\">Release 1.10.0.0</h2>\n<ul>\n<li><p>Added new endpoint – api/goodsReceivedNotes</p>\n</li>\n<li><p>Added new endpoint – api/searchGoodsReceivedNotes</p>\n</li>\n<li><p>Deprecated endpoint - api/searchDispatch</p>\n</li>\n</ul>\n<h2 id=\"release-1961\">Release 1.9.6.1</h2>\n<ul>\n<li>Fixed bug on endpoint api/salesInvoice/</li>\n</ul>\n<h2 id=\"release-1960\">Release 1.9.6.0</h2>\n<ul>\n<li><p>Added field “settlementDueDays” to endpoint api/salesInvoice/</p>\n</li>\n<li><p>Added field “settlementDiscRate” to endpoint api/salesInvoice/</p>\n</li>\n<li><p>Added field “baseSettlementDiscRate” to endpoint api/salesInvoice/</p>\n</li>\n</ul>\n<h2 id=\"release-1950\">Release 1.9.5.0</h2>\n<ul>\n<li><p>Fixed bug with fields “projectRef” and “costCodeRef” on endpoint api/purchaseInvoice</p>\n</li>\n<li><p>Fixed bug with field “externalFileURL” on endpoint api/purchaseInvoice</p>\n</li>\n</ul>\n<h2 id=\"release-1940\">Release 1.9.4.0</h2>\n<ul>\n<li>Added field ‘qtyInvoiced’ on endpoint api/purchaseOrder</li>\n</ul>\n<h2 id=\"release-1930\">Release 1.9.3.0</h2>\n<ul>\n<li>Added field ‘dispute’ on endpoint api/purchaseInvoice</li>\n</ul>\n<h2 id=\"release-1920\">Release 1.9.2.0</h2>\n<ul>\n<li>Added field ‘vatRegNumber’ on endpoint api/searchPurchaseLedger</li>\n</ul>\n<h2 id=\"release-1910\">Release 1.9.1.0</h2>\n<ul>\n<li><p>Added field ‘projectId’ on endpoint api/purchaseInvoice</p>\n</li>\n<li><p>Added field ‘costCodeId’ on endpoint api/purchaseInvoice</p>\n</li>\n</ul>\n<h2 id=\"release-1900\">Release 1.9.0.0</h2>\n<ul>\n<li><p>Added new endpoint POST - api/projectCostCode</p>\n</li>\n<li><p>Fixed bug on endpoint - api/searchPurchaseLedger</p>\n</li>\n<li><p>Added field ‘serviceFlag’ on endpoint api/salesInvoice</p>\n</li>\n</ul>\n<p> </p>\n<h2 id=\"release-1803\">Release 1.8.0.3</h2>\n<ul>\n<li><p>Added field ‘username’ on endpoint api/transactionPost</p>\n</li>\n<li><p>Added field ‘itemType’ on endpoint api/searchProduct</p>\n</li>\n<li><p>Added field ‘serviceFlag’ on endpoint api/salesOrder</p>\n</li>\n</ul>\n<h2 id=\"release-1802\">Release 1.8.0.2</h2>\n<ul>\n<li>Added fields ‘projectRef’ &amp; ‘costCode’ in ‘invoiceItems’ on endpoint api/purchaseOrder</li>\n</ul>\n<h2 id=\"release-1801\">Release 1.8.0.1</h2>\n<ul>\n<li><p>Fixed bug on endpoint - api/searchPopItem</p>\n</li>\n<li><p>Fixed bug on endpoint - api/searchSopItem</p>\n</li>\n</ul>\n<h2 id=\"release-1800\">Release 1.8.0.0</h2>\n<ul>\n<li><p>Added new endpoint api/paymentMethod - GET only</p>\n</li>\n<li><p>Added field “paymentMethodId” to endpoint api/supplier &amp; api/searchPurchaseLedger</p>\n</li>\n</ul>\n<h2 id=\"release-172\">Release 1.7.2</h2>\n<ul>\n<li>Added fields 'courierNumber on endpoint - api/salesOrder</li>\n</ul>\n<h2 id=\"release-171\">Release 1.7.1</h2>\n<ul>\n<li>Added fields ‘courierNumber’ &amp; ‘courierName’ on endpoint - api/searchSalesOrder</li>\n</ul>\n<h2 id=\"release-170\">Release 1.7.0</h2>\n<ul>\n<li><p>Bug fix on endpoint: SalesInvoice/{id}/Complete</p>\n</li>\n<li><p>Added new endpoint: api/SearchInvoiceItem</p>\n</li>\n</ul>\n<h2 id=\"release-1627\">Release 1.6.27</h2>\n<ul>\n<li>Added field ‘isNegativeLine’ to endpoint api/purchaseInvoice</li>\n</ul>\n<h2 id=\"release-1626\">Release 1.6.26</h2>\n<ul>\n<li><p>Added field 'invoiceItemsDataFromStockItemData’to endpoint api/salesInvoice</p>\n</li>\n<li><p>Added field 'orderItemsDataFromStockItemData’to endpoint api/salesOrder</p>\n</li>\n<li><p>Bug fixed on api/purchaseInvoice</p>\n</li>\n</ul>\n<h2 id=\"release-1625\">Release 1.6.25</h2>\n<ul>\n<li><p>Added fields “address1” to “address5” to endpoint - api/searchSalesOrder</p>\n</li>\n<li><p>Added fields “delAddress1” to “delAddress5” to endpoint - api/searchSalesOrder</p>\n</li>\n<li><p>Added field “globalDepartment” to endpoint -api/salesOrder/</p>\n</li>\n<li><p>Added field “fillGlobalsFromCustomerDefaults” to endpoint -api/salesOrder/</p>\n</li>\n<li><p>Fixed error with 0 value line on endpoint - api/salesInvoice/</p>\n</li>\n<li><p>Added field “printed” to POST endpoint - api/salesInvoice/</p>\n</li>\n<li><p>Added field “emailed” to POST endpoint - api/salesInvoice/</p>\n</li>\n</ul>\n<h2 id=\"release-16240\">Release 1.6.24.0</h2>\n<ul>\n<li><p>Fixed bug on endpoint - api/allocatePaymentOnAccount</p>\n</li>\n<li><p>Added field 'settlementDiscRate’to endpoint api/SalesOrder</p>\n</li>\n<li><p>Added field 'settlementDueDays’to endpoint api/SalesOrder</p>\n</li>\n</ul>\n<h2 id=\"release-16230\">Release 1.6.23.0</h2>\n<ul>\n<li><p>Added field 'discountRate’to endpoint api/supplier</p>\n</li>\n<li><p>Added field 'paymentDueDays’to endpoint api/supplier</p>\n</li>\n<li><p>Added field 'discountRate’to endpoint api/searchPurchaseLedger</p>\n</li>\n<li><p>Added field 'paymentDueDays’to endpoint api/searchPurchaseLedger</p>\n</li>\n<li><p>Added field ‘itemsNet’ to endpoint api/salesOrder</p>\n</li>\n<li><p>Added field ‘itemsTax’ to endpoint api/salesOrder</p>\n</li>\n<li><p>Added field ‘netValueDiscountPercentage’ to endpoint api/salesOrder</p>\n</li>\n<li><p>Added field ‘netValueDiscountPercentage’ to endpoint api/searchSalesOrder</p>\n</li>\n<li><p>Added field ‘dueDate’ to endpoint api/purchaseInvoice</p>\n</li>\n</ul>\n<h2 id=\"release-16220\">Release 1.6.22.0</h2>\n<ul>\n<li><p>Added new endpoint (GET) - api/customerAddress</p>\n</li>\n<li><p>Added field ‘tradeContact’ to endpoint api/searchSalesLedger</p>\n</li>\n</ul>\n<h2 id=\"release-16210\">Release 1.6.21.0</h2>\n<ul>\n<li><p>Added field “globalNominal” to endpoint api/salesOrder</p>\n</li>\n<li><p>Added field “globalDetails” to endpoint api/salesOrder</p>\n</li>\n<li><p>Added field “globalTaxCode” to endpoint api/salesOrder</p>\n</li>\n</ul>\n<h2 id=\"release-16202\">Release 1.6.20.2</h2>\n<ul>\n<li><p>Added new endpoint (POST) - api/customerAddress</p>\n</li>\n<li><p>Added field “eoriNumber” to endpoint api/customer</p>\n</li>\n<li><p>Added field “tradeContact” to endpoint api/customer</p>\n</li>\n<li><p>Added field “telephone2” to endpoint api/customer</p>\n</li>\n<li><p>Added field “fax” to endpoint api/customer</p>\n</li>\n<li><p>Fixed bug on endpoint api/searchSalesLedger</p>\n</li>\n<li><p>Added field “reference” to endpoint api/searchPurchaseOrder</p>\n</li>\n</ul>\n<h2 id=\"release-1619\">Release 1.6.19</h2>\n<ul>\n<li><p>Added new endpoint - api/documentLink/{ID}</p>\n</li>\n<li><p>Added field “foreignRate” to endpoint - api/salesOrder/</p>\n</li>\n<li><p>Fix discount issue on endpoint - api/salesInvoice</p>\n</li>\n</ul>\n<h2 id=\"release-1618\">Release 1.6.18</h2>\n<ul>\n<li><p>Added field “itemsNet” to endpoint - api/purchaseOrder</p>\n</li>\n<li><p>Added field “itemsTax” to endpoint - api/purchaseOrder</p>\n</li>\n<li><p>Added field “defNomCodeUseDefault” to endpoint - api/customer</p>\n</li>\n<li><p>Added field “defTaxCodeUseDefault” to endpoint - api/customer</p>\n</li>\n<li><p>Fixed storedPrice on endpoint - api/searchPrice</p>\n</li>\n<li><p>Added field \"eoriNumber to endpoint - api/customer</p>\n</li>\n</ul>\n<h2 id=\"release-16170\">Release 1.6.17.0</h2>\n<ul>\n<li><p>Added endpoint - api/SopItem</p>\n</li>\n<li><p>Various changes &amp; additions on api/searchSopItem</p>\n</li>\n<li><p>Various changes &amp; additions on api/searchPopItem</p>\n</li>\n<li><p>Rounding salesPrice to 4 decimals on api/product</p>\n</li>\n<li><p>Added field ‘id’ to endpoint - api/salesOrder</p>\n</li>\n<li><p>Added field ‘id’ to endpoint - api/salesInvoice</p>\n</li>\n<li><p>Added field ‘unitOfsale’ to endpoint - api/salesOrder</p>\n</li>\n<li><p>Added field ‘unitOfsale’ to endpoint - api/salesInvoice</p>\n</li>\n<li><p>Fixed bug on enpoint - api/transactionPost</p>\n</li>\n<li><p>Note: ‘id’ fields on items on endpoints api/salesOrder and api/salesInvoice are READ ONLY</p>\n</li>\n</ul>\n<h2 id=\"release-1615\">Release 1.6.15</h2>\n<ul>\n<li>Added endpoint - api/allocatePaymentOnAccount</li>\n</ul>\n<h2 id=\"release-1614\">Release 1.6.14</h2>\n<ul>\n<li><p>Fix for transactionPost performance issues</p>\n</li>\n<li><p>Added field “recordCreatedDate” to endpoint - api/searchUsage</p>\n</li>\n<li><p>Added field “recordModifyDate” to endpoint - api/searchUsage</p>\n</li>\n</ul>\n<h2 id=\"release-1613\">Release 1.6.13</h2>\n<ul>\n<li><p>Added field “carriageDepartmentNumber” to endpoint - api/salesOrder</p>\n</li>\n<li><p>Added field “carriageDepartmentNumber” to endpoint - api/salesInvoice</p>\n</li>\n<li><p>Added field “consignmentRef” to endpoint - api/salesOrder</p>\n</li>\n</ul>\n<h2 id=\"release-1612\">Release 1.6.12</h2>\n<ul>\n<li><p>Fix for the Sales Receipts / Purchase Payment allocations against invoices</p>\n</li>\n<li><p>Fixed bug on endpoint - api/salesInvoice making certain fields optional</p>\n</li>\n<li><p>Added field “projectRef” to endpoint - api/purchaseInvoice</p>\n</li>\n<li><p>Added field “costCode” to endpoint - api/purchaseInvoice</p>\n</li>\n</ul>\n<h2 id=\"release-1611\">Release 1.6.11</h2>\n<ul>\n<li>Fix for the Sales Receipts / Purchase Payment allocations where they were not matching properly against Sales Invoices or Purchase Invoices</li>\n</ul>\n<h2 id=\"release-1610\">Release 1.6.10</h2>\n<ul>\n<li><p>Added field “commodityCode” to endpoint - api/product</p>\n</li>\n<li><p>Added field “barcode” to endpoint - api/product</p>\n</li>\n<li><p>Added field “webDetails” to endpoint - api/product</p>\n</li>\n<li><p>Added field “webDescription” to endpoint - api/product</p>\n</li>\n</ul>\n<h2 id=\"release-169\">Release 1.6.9</h2>\n<ul>\n<li><p>Added field “carriageDepartmentNumber” to endpoint - api/purchaseOrder</p>\n</li>\n<li><p>Added fields “notes1” to “notes3” to endpoint - api/purchaseOrder</p>\n</li>\n</ul>\n<h2 id=\"release-168\">Release 1.6.8</h2>\n<ul>\n<li><p>Added fields “analysis1” to “analysis3” to endpoint api/salesInvoice/</p>\n</li>\n<li><p>Added field “netValueDiscountDescription” to endpoint api/salesInvoice/</p>\n</li>\n<li><p>Added field “netValueDiscountAmount” to endpoint api/salesInvoice/</p>\n</li>\n<li><p>Renamed netValue fields on endpoint - api/searchInvoice</p>\n</li>\n</ul>\n<h2 id=\"release-167\">Release 1.6.7</h2>\n<ul>\n<li>Updated “description” field on endpoint - api/salesorder/ to hold 60 chars</li>\n</ul>\n<h2 id=\"release-166\">Release 1.6.6</h2>\n<ul>\n<li>Updated “status” on endpoint - api/purchaseOrder to allow additional values</li>\n</ul>\n<h2 id=\"release-165\">Release 1.6.5</h2>\n<ul>\n<li><p>Added “currency” to endpoint - api/purchaseInvoice</p>\n</li>\n<li><p>Added “foreignRate” to endpoint - api/purchaseInvoice</p>\n</li>\n<li><p>Refinements to PATCH endpoints</p>\n</li>\n<li><p>Added “notes3” to endpoint - api/salesInvoice</p>\n</li>\n</ul>\n<h2 id=\"release-164\">Release 1.6.4</h2>\n<ul>\n<li><p>Added “component1Code” to “component10Code” to endpoint - api/product</p>\n</li>\n<li><p>Added “component1Qty” to “component10Qty” to endpoint - api/product</p>\n</li>\n<li><p>Added “exRef” to endpoint - api/purchaseInvoice</p>\n</li>\n</ul>\n<h2 id=\"release-163\">Release 1.6.3</h2>\n<ul>\n<li><p>Fixed bug on multiple Patch endpoints removing details from Sage when left blank</p>\n</li>\n<li><p>Added “lastPurchasePrice” to Patch Product - api/product</p>\n</li>\n</ul>\n<h2 id=\"release-162\">Release 1.6.2</h2>\n<ul>\n<li><p>Fixed bug on endpoint - api/searchSalesLedger giving “eoriNumber” error for older versions of Sage</p>\n</li>\n<li><p>Added feature on endpoint - api/salesorder to allow line item description to auto populate from product if null</p>\n</li>\n<li><p>Added feature on endpoint - api/project to allow line item “status” field to be changed to ACTIVE, COMPLETED, INITIAL, SNAG, SUSPEND</p>\n</li>\n</ul>\n<h2 id=\"release-161\">Release 1.6.1</h2>\n<ul>\n<li><p>Added “lastCostPrice” to Search Product - api/searchProduct</p>\n</li>\n<li><p>Added “countryCodeOfOrigin” to Search Product - api/searchProduct</p>\n</li>\n<li><p>Added “vatRegNumber” to Search Sales Ledger - api/searchSalesLedger</p>\n</li>\n<li><p>Added “eoriNumber” to Search Sales Ledger - api/searchSalesLedger</p>\n</li>\n<li><p>Added endpoint - api/searchDispatch</p>\n</li>\n</ul>\n<h2 id=\"release-160\">Release 1.6.0</h2>\n<ul>\n<li><p>Updated endpoints api/company &amp; api/nominal to use ODBC</p>\n</li>\n<li><p>Fixed bug on endpoint api/purchaseOrder removing details from Sage when left blank</p>\n</li>\n<li><p>Updated endpoint - api/supplier to be able to specify own Account Ref</p>\n</li>\n<li><p>Fixed bug on endpoint - api/salesOrder/{id}/complete failing when message line is included in items</p>\n</li>\n</ul>\n<h2 id=\"release-1528\">Release 1.5.28</h2>\n<ul>\n<li>Fixed bug on endpoint - api/supplier &amp; api/purchaseOrder/ removing details from Sage when left blank</li>\n</ul>\n<h2 id=\"release-1527\">Release 1.5.27</h2>\n<ul>\n<li><p>Added endpoint - api/searchPopItem</p>\n</li>\n<li><p>Added field “netValueDiscountAmount” to Create Sales Order - api/salesOrder/</p>\n</li>\n<li><p>Added field “email3” to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Updated endpoints - api/coa/ &amp; api/control to use ODBC</p>\n</li>\n</ul>\n<h2 id=\"release-1526\">Release 1.5.26</h2>\n<ul>\n<li><p>Added deptNumber to endpoint - api/journal</p>\n</li>\n<li><p>Added extraRef to endpoint - api/journal</p>\n</li>\n<li><p>Added delName to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added delAddress1 to delAddress5 to endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Added orderDate to endpoint - api/salesorder</p>\n</li>\n</ul>\n<h2 id=\"release-1525\">Release 1.5.25</h2>\n<ul>\n<li><p>Added component1Code to component10Code in relation to “Bill Of Materials” to endpoint - api/searchProduct</p>\n</li>\n<li><p>Added component1Qty to component10Qty in relation to “Bill Of Materials” to endpoint - api/searchProduct</p>\n</li>\n</ul>\n<h2 id=\"release-1524\">Release 1.5.24</h2>\n<ul>\n<li><p>Updated endpoint - api/currency to use ODBC</p>\n</li>\n<li><p>Fixed bug on endpoint - api/salesInvoice with auto numbering between sales credits and sales invoices</p>\n</li>\n<li><p>Endpoint - api/salesInvoice address1 to address5 will now populate from Sales Ledger if not supplied in JSON</p>\n</li>\n</ul>\n<h2 id=\"release-1523\">Release 1.5.23</h2>\n<ul>\n<li><p>Added optional address 1-5 to salesInvoice</p>\n</li>\n<li><p>Added isNegativeLine fields to salesInvoice</p>\n</li>\n</ul>\n<h2 id=\"release-1522\">Release 1.5.22</h2>\n<ul>\n<li><p>Added isCredit option to purchaseInvoice endpoint</p>\n</li>\n<li><p>Fixed bug on unclean disconnect issue on api/project</p>\n</li>\n</ul>\n<h2 id=\"release-1521\">Release 1.5.21</h2>\n<ul>\n<li><p>Added isCredit option to purchaseInvoice endpoint</p>\n</li>\n<li><p>Added discountAmount back into Sales Order</p>\n</li>\n<li><p>Fixed bug on SO analysis fields</p>\n</li>\n<li><p>Simplified searchUsage response to avoid corrupt data in created and modified dates</p>\n</li>\n</ul>\n<h2 id=\"release-1520\">Release 1.5.20</h2>\n<ul>\n<li><p>Fixed an issue in GET project</p>\n</li>\n<li><p>Added analysis fields to sales order</p>\n</li>\n</ul>\n<h2 id=\"release-1519\">Release 1.5.19</h2>\n<ul>\n<li>Updated purchase invoice endpoint, added new fields and prevented overwriting existing ones</li>\n</ul>\n<h2 id=\"release-1518\">Release 1.5.18</h2>\n<ul>\n<li><p>Added new POST purchase invoice endpoint</p>\n</li>\n<li><p>Added new POST complete sales order endpoint</p>\n</li>\n<li><p>Added delName to PO and item.netAmount to SO</p>\n</li>\n</ul>\n<h2 id=\"release-1517\">Release 1.5.17</h2>\n<ul>\n<li>Added new global optional fields to Sales invoice</li>\n</ul>\n<h2 id=\"release-1516\">Release 1.5.16</h2>\n<ul>\n<li><p>Added optional netAmount field to salesInvoice Item to reverse calculate discounts and resolve floating point issues on fractional amounts</p>\n</li>\n<li><p>On salesInvoice endpoint requests with invoiceTypeCode = 3 or 4 will now use next Credit Number from Sage rather than next Invoice Number as before</p>\n</li>\n<li><p>On POST purchaseOrder user can optionally specify own PO orderNumber in place of autogenerated number from Sage. Includes protection against overwriting existing records with same ref.</p>\n</li>\n</ul>\n<h2 id=\"release-1515\">Release 1.5.15</h2>\n<ul>\n<li>Added new projectCostCode endpoint</li>\n</ul>\n<h2 id=\"release-1514\">Release 1.5.14</h2>\n<ul>\n<li><p>Stock adjustments fetch previous cost price if not provided</p>\n</li>\n<li><p>Compound discount feature on sales invoices</p>\n</li>\n</ul>\n<h2 id=\"release-1513\">Release 1.5.13</h2>\n<ul>\n<li><p>Added search price endpoint</p>\n</li>\n<li><p>Added new fields to search Product endpoint</p>\n</li>\n<li><p>Fixed an issue when posting/patching sales invoices</p>\n</li>\n</ul>\n<h2 id=\"release-1512\">Release 1.5.12</h2>\n<ul>\n<li>Added additional fields to customer and searchSalesLedger to manage sales discounting and created new webImage endpoint for product api/product/{stockCode}/webImage</li>\n</ul>\n<h2 id=\"release-1511\">Release 1.5.11</h2>\n<ul>\n<li>Further improved connection handling performance. Enabled ‘details’ field to be used in salesInvoice items for service items with stockCode other than ‘S3’</li>\n</ul>\n<h2 id=\"release-1510\">Release 1.5.10</h2>\n<ul>\n<li><p>Changes to Sage connection handling logic to improve performance under load</p>\n</li>\n<li><p>Added runtime debugging functionality (internal use only)</p>\n</li>\n<li><p>Added purchaseNominalCode to Product, added itemsNet and itemsTax to GET salesInvoice</p>\n</li>\n</ul>\n<h2 id=\"release-159\">Release 1.5.9</h2>\n<ul>\n<li>Adapted Transaction Post endpoint to handle case where Sage BASE Currency is other than GBP</li>\n</ul>\n<h2 id=\"release-158\">Release 1.5.8</h2>\n<ul>\n<li>Added Search Invoice endpoint</li>\n</ul>\n<h2 id=\"release-157\">Release 1.5.7</h2>\n<ul>\n<li><p>Added search project endpoint</p>\n</li>\n<li><p>Fixed issue with consignmentRef field in sales invoice</p>\n</li>\n<li><p>Added accountStatus field to customer</p>\n</li>\n<li><p>Fixed an issue with patching a product and added location</p>\n</li>\n<li><p>Added projectID and costCodeID fileds to purchase order</p>\n</li>\n</ul>\n<h2 id=\"release-156\">Release 1.5.6</h2>\n<ul>\n<li><p>Added additional fields to audit usage response</p>\n</li>\n<li><p>Added additional fields to supplier endpoint</p>\n</li>\n<li><p>Added GET tax code by ID</p>\n</li>\n<li><p>Added additional fields to customer endpoint</p>\n</li>\n<li><p>Added LIKE functionality in search</p>\n</li>\n<li><p>Added consignmentRef to sales invoice</p>\n</li>\n</ul>\n<h2 id=\"release-155\">Release 1.5.5</h2>\n<ul>\n<li><p>Added departments endpoint</p>\n</li>\n<li><p>Added Search usage endpoint</p>\n</li>\n<li><p>Improved endpoint response information on Update Ledgers</p>\n</li>\n</ul>\n<h2 id=\"release-154\">Release 1.5.4</h2>\n<ul>\n<li>Added a GET request to get stock adjustments</li>\n</ul>\n<h2 id=\"release-153\">Release 1.5.3</h2>\n<ul>\n<li>Fixed an issue with sales credits numbering</li>\n</ul>\n<h2 id=\"release-152\">Release 1.5.2</h2>\n<ul>\n<li><p>Added Due date to purchase order</p>\n</li>\n<li><p>Added api/stock</p>\n</li>\n<li><p>Added api/searchPurchaseOrder</p>\n</li>\n</ul>\n<h2 id=\"release-151\">Release 1.5.1</h2>\n<ul>\n<li><p>Added multi company support</p>\n</li>\n<li><p>Price list endpoint now uses ODBC (performance improvement)</p>\n</li>\n<li><p>Added VAT number, email 1 and email 2 fields to customer</p>\n</li>\n<li><p>Fixed credit invoice numbering issue</p>\n</li>\n<li><p>Added due date field to purchase order endpoint</p>\n</li>\n</ul>\n<h2 id=\"release-150\">Release 1.5.0</h2>\n<ul>\n<li><p>Added chart of accounts endpoint</p>\n</li>\n<li><p>Added control endpoint</p>\n</li>\n<li><p>Added ability to search by date time</p>\n</li>\n</ul>\n<h2 id=\"release-1414\">Release 1.4.14</h2>\n<ul>\n<li><p>Added company endpoint</p>\n</li>\n<li><p>Fixed issue with partial data on customer patch</p>\n</li>\n</ul>\n<h2 id=\"release-1413\">Release 1.4.13</h2>\n<ul>\n<li>Added additional fields to search audit headers and splits</li>\n</ul>\n<h2 id=\"release-1412\">Release 1.4.12</h2>\n<ul>\n<li><p>Stock code restricted to 30 chars on sales order and sales invoice</p>\n</li>\n<li><p>Added patch to sales invoice endpoint</p>\n</li>\n</ul>\n<h2 id=\"release-1411\">Release 1.4.11</h2>\n<ul>\n<li><p>Added search purchase ledger endpoint</p>\n</li>\n<li><p>Removed character limit on stock code</p>\n</li>\n</ul>\n<h2 id=\"release-1410\">Release 1.4.10</h2>\n<ul>\n<li>Additional fields added</li>\n</ul>\n<h2 id=\"release-149\">Release 1.4.9</h2>\n<ul>\n<li><p>Added additional fields to search sales order</p>\n</li>\n<li><p>Added balance to nominal endpoint (read only)</p>\n</li>\n<li><p>Changed older agedBalance from 160 to 120</p>\n</li>\n</ul>\n<h2 id=\"release-148\">Release 1.4.8</h2>\n<ul>\n<li>Added additional fields to product and sales ledger search</li>\n</ul>\n<h2 id=\"release-147\">Release 1.4.7</h2>\n<ul>\n<li>Added additional fields to product and sales ledger search</li>\n</ul>\n<h2 id=\"release-146\">Release 1.4.6</h2>\n<ul>\n<li><p>Added additional fields to product and sales ledger search</p>\n</li>\n<li><p>Fixed a currency related issue with transactionPost</p>\n</li>\n<li><p>Added search splits endpoint</p>\n</li>\n</ul>\n<h2 id=\"release-145\">Release 1.4.5</h2>\n<ul>\n<li><p>Added departmentNumber to purchase order endpoint</p>\n</li>\n<li><p>Added analysis fields to project</p>\n</li>\n<li><p>Made accountRef on project optional</p>\n</li>\n</ul>\n<h2 id=\"release-144\">Release 1.4.4</h2>\n<ul>\n<li><p>Added Project transactions endpoint</p>\n</li>\n<li><p>Added custom accountRef in customer endpoint</p>\n</li>\n</ul>\n<h2 id=\"release-143\">Release 1.4.3</h2>\n<ul>\n<li>Added agedDebtors endpoint</li>\n</ul>\n<h2 id=\"release-142\">Release 1.4.2</h2>\n<ul>\n<li>Added VAT number, email2 and email3 properties to customer endpoint</li>\n</ul>\n<h2 id=\"release-141\">Release 1.4.1</h2>\n<ul>\n<li><p>Fixed an issue with stock code being truncated to 15 chars on the Sales Invoice endpoint</p>\n</li>\n<li><p>Fixed an issue when patching a purchase order</p>\n</li>\n</ul>\n<h2 id=\"release-140\">Release 1.4.0</h2>\n<ul>\n<li><p>Added shouldUpdateLedgers flag to sales invoice endpoint</p>\n</li>\n<li><p>Added shouldAllocatePayment to transaction post endpoint</p>\n</li>\n</ul>\n<h2 id=\"release-138\">Release 1.3.8</h2>\n<ul>\n<li>Added searchSalesLedgers endpoint</li>\n</ul>\n<h2 id=\"release-137\">Release 1.3.7</h2>\n<ul>\n<li>Added onHold property to customer model</li>\n</ul>\n<h2 id=\"release-136\">Release 1.3.6</h2>\n<ul>\n<li>Added nominal endpoint</li>\n</ul>\n<h2 id=\"release-135\">Release 1.3.5</h2>\n<ul>\n<li><p>Added project endpoint</p>\n</li>\n<li><p>Date parsing fix</p>\n</li>\n</ul>\n<h2 id=\"release-134\">Release 1.3.4</h2>\n<ul>\n<li>Added address fields to Sales Order endpoint</li>\n</ul>\n<h2 id=\"release-133\">Release 1.3.3</h2>\n<ul>\n<li><p>Added transactionPost endpoint</p>\n</li>\n<li><p>Added paymentDueDate and projectId to sales invoice</p>\n</li>\n<li><p>Added DELETE endpoints to sales/purchase order</p>\n</li>\n<li><p>Added foreign currency related fields to sales invoice</p>\n</li>\n</ul>\n<h2 id=\"release-132\">Release 1.3.2</h2>\n<ul>\n<li>Fixed an issue with Patch supplier endpoint</li>\n</ul>\n<h2 id=\"release-131\">Release 1.3.1</h2>\n<ul>\n<li><p>Added Purchase order GET and PATCH endpoints</p>\n</li>\n<li><p>Added ID field to currency list</p>\n</li>\n<li><p>Added supplierOrderNumber to Purchase orders</p>\n</li>\n</ul>\n<h2 id=\"release-130\">Release 1.3.0</h2>\n<ul>\n<li><p>Added transactionPost endpoint</p>\n</li>\n<li><p>Receipt endpoints share code/models with transactionPost</p>\n</li>\n</ul>\n<h2 id=\"release-1210\">Release 1.2.10</h2>\n<ul>\n<li><p>Added foreignRate and invoiceTypeCode to Sales Invoice</p>\n</li>\n<li><p>Added refundOnAccount endpoint</p>\n</li>\n</ul>\n<h2 id=\"release-129\">Release 1.2.9</h2>\n<ul>\n<li>Added web category fields to product search</li>\n</ul>\n<h2 id=\"release-128\">Release 1.2.8</h2>\n<ul>\n<li>Fixed an issue with supplier currency field</li>\n</ul>\n<h2 id=\"release-127\">Release 1.2.7</h2>\n<ul>\n<li><p>Added paymentOnAccount endpoint</p>\n</li>\n<li><p>Fixed issue with search products</p>\n</li>\n<li><p>Added status fields to search sales order</p>\n</li>\n<li><p>Added printed flag to sales invoice</p>\n</li>\n<li><p>Added customer balance to response</p>\n</li>\n</ul>\n<h2 id=\"release-126\">Release 1.2.6</h2>\n<ul>\n<li><p>Added orderDueDate to sales order</p>\n</li>\n<li><p>Added GET Currency</p>\n</li>\n</ul>\n<h2 id=\"release-125\">Release 1.2.5</h2>\n<ul>\n<li><p>Added products search</p>\n</li>\n<li><p>Added country code to customers</p>\n</li>\n<li><p>Allow manually entering comment 1 &amp; 2 on sales order items</p>\n</li>\n</ul>\n<h2 id=\"release-124\">Release 1.2.4</h2>\n<ul>\n<li><p>Added journal endpoint</p>\n</li>\n<li><p>Added bank endpoint</p>\n</li>\n<li><p>Fixed an issue with sales invoice item details not showing</p>\n</li>\n</ul>\n<h2 id=\"release-123\">Release 1.2.3</h2>\n<ul>\n<li><p>Added ability to update sales order account ref</p>\n</li>\n<li><p>Added Get Sales Invoice endpoint</p>\n</li>\n<li><p>Added InvRef field to search sales order</p>\n</li>\n</ul>\n<h2 id=\"release-122\">Release 1.2.2</h2>\n<ul>\n<li><p>Search sales order table</p>\n</li>\n<li><p>General small improvements</p>\n</li>\n</ul>\n<h2 id=\"release-121\">Release 1.2.1</h2>\n<ul>\n<li>Small bug fixes in sales order and get sales receipt by invoice</li>\n</ul>\n<h2 id=\"release-120\">Release 1.2.0</h2>\n<ul>\n<li>Added api/search/auditHeaders search endpoint</li>\n</ul>\n<h2 id=\"release-118\">Release 1.1.8</h2>\n<ul>\n<li><p>Added post sales receipt endpoint</p>\n</li>\n<li><p>Fixed a bug that reported false when fetching suppliers</p>\n</li>\n<li><p>Fixed a bug with generating customer references</p>\n</li>\n<li><p>Added datePosted field to GET sales receipts</p>\n</li>\n</ul>\n<h2 id=\"release-117\">Release 1.1.7</h2>\n<ul>\n<li><p>Added departmentNumber field to salesOrders</p>\n</li>\n<li><p>Bug fix with company name</p>\n</li>\n</ul>\n<h2 id=\"release-116\">Release 1.1.6</h2>\n<ul>\n<li>Bug fixes with sales orders</li>\n</ul>\n<h2 id=\"release-115\">Release 1.1.5</h2>\n<ul>\n<li><p>Added product endpoint</p>\n</li>\n<li><p>Added http status code</p>\n</li>\n</ul>\n<h2 id=\"release-114\">Release 1.1.4</h2>\n<ul>\n<li><p>Fixed a bug in posting a sales order</p>\n</li>\n<li><p>Fixed missing dependency issue</p>\n</li>\n<li><p>Added get sales orders and sales order by order number</p>\n</li>\n<li><p>Fixed an issue with special characters in account ref</p>\n</li>\n</ul>\n<h2 id=\"release-113\">Release 1.1.3</h2>\n<ul>\n<li><p>Fixed a bug when fetching part-paid sales receipts</p>\n</li>\n<li><p>Fixed an issue where you couldn’t clear an optional text field with an empty string</p>\n</li>\n<li><p>Added sendLettersElectronically to customer object</p>\n</li>\n</ul>\n<h2 id=\"release-112\">Release 1.1.2</h2>\n<ul>\n<li><p>Additional fields added to customer and sales invoice</p>\n</li>\n<li><p>Some fields changed from mandatory/optional in sales invoice</p>\n</li>\n<li><p>Basic token based authentication added</p>\n</li>\n</ul>\n<h2 id=\"release-111\">Release 1.1.1</h2>\n<ul>\n<li>Multi currency changes</li>\n</ul>\n<h2 id=\"release-100\">Release 1.0.0</h2>\n<ul>\n<li>Initial Build</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Optional Fields","slug":"optional-fields"},{"content":"Authentication","slug":"authentication"},{"content":"SEARCH Requests","slug":"search-requests"},{"content":"Change Log","slug":"change-log"}],"owner":"6298410","collectionId":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","publishedId":"SWT8gKUB","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"00d133"},"publishDate":"2024-07-04T17:10:42.000Z"},"item":[{"name":"Settings","item":[{"name":"Read API Status","event":[{"listen":"test","script":{"id":"d34e64b8-d903-4da0-b53d-ddb4692593c7","exec":["tests[\"Company Settings Working\"+pm.response.text()] = responseBody .has(\"name\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f17c9ccf-36cc-4f4f-88b0-23ac24b4d298","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/status","description":"<h2 id=\"get-company-settings\">Get Company Settings</h2>\n<ul>\n<li><p>Description: Checks status of API</p>\n</li>\n<li><p>Endpoint URL: <code>api/status</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f6ebe227-d978-4977-8fef-15b1cddd29bf","name":"Read API Status","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/status"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 09 Sep 2025 09:29:44 GMT"},{"key":"Content-Length","value":"165"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"apiVersion\": \"1.23.0.0\",\n        \"sageVersion\": \"31.1\",\n        \"companyName\": \"API TEST CO\",\n        \"sdoStatusOk\": true,\n        \"odbcStatusOk\": true\n    },\n    \"message\": \"\"\n}"}],"_postman_id":"f17c9ccf-36cc-4f4f-88b0-23ac24b4d298"},{"name":"Read API Server","event":[{"listen":"test","script":{"id":"d34e64b8-d903-4da0-b53d-ddb4692593c7","exec":["tests[\"Company Settings Working\"+pm.response.text()] = responseBody .has(\"name\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"e379c976-8596-4e55-97c2-713df98ef5fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/server","description":"<h2 id=\"get-server-settings\">Get Server Settings</h2>\n<ul>\n<li><p>Description: Checks server date/time settings</p>\n</li>\n<li><p>Endpoint URL: <code>api/server</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","server"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"54f388b8-1f10-4d0a-9abe-850f1c7f43ed","name":"Read API Server","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/server"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 12 Jan 2026 14:36:05 GMT"},{"key":"Content-Length","value":"181"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"timeZone\": \"(UTC+00:00) Dublin, Edinburgh, Lisbon, London\",\n        \"currentTime\": \"12 January 2026 14:36:05\",\n        \"dateFormat\": \"dd/MM/yyyy\"\n    },\n    \"message\": null\n}"}],"_postman_id":"e379c976-8596-4e55-97c2-713df98ef5fe"},{"name":"Read Sage Data Amounts","event":[{"listen":"test","script":{"id":"d34e64b8-d903-4da0-b53d-ddb4692593c7","exec":["tests[\"Company Settings Working\"+pm.response.text()] = responseBody .has(\"name\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a1ace60d-6a8f-4255-9c37-642608220f0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/data","description":"<h2 id=\"get-sage-data-amounts\">Get Sage Data Amounts</h2>\n<ul>\n<li><p>Description: Reads data amounts</p>\n</li>\n<li><p>Endpoint URL: <code>api/data</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","data"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9c228bd1-0ad7-4450-8748-17776df5ddd6","name":"Read Sage Data Amounts","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/data"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 05 Feb 2026 11:46:29 GMT"},{"key":"Content-Length","value":"184"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"transactions\": 1534,\n        \"invoices\": 133,\n        \"salesOrders\": 77,\n        \"purchaseOrders\": 62,\n        \"customers\": 60,\n        \"supppliers\": 18,\n        \"products\": 6,\n        \"projects\": 0\n    },\n    \"message\": null\n}"}],"_postman_id":"a1ace60d-6a8f-4255-9c37-642608220f0f"},{"name":"Read API Version","event":[{"listen":"test","script":{"id":"e0923810-4ba1-4eb2-8b01-034c8ad6bc1e","exec":["tests[\"API Version Working\"+pm.response.text()] = responseBody .has(\"1.\");"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"904cb71b-6385-40dd-a5b4-7228c62a5be7","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"1871c16e-7def-40af-aa42-4c028c9365e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/system/version","description":"<h2 id=\"get-api-version\">Get API Version</h2>\n<ul>\n<li><p>Description: Returns API Version.</p>\n</li>\n<li><p>Endpoint URL: <code>api/system/version</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","system","version"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"32f89b06-0603-40b4-abf1-31cb84858b20","name":"Read API Version","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/system/version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 10:13:37 GMT"},{"key":"Content-Length","value":"10"}],"cookie":[],"responseTime":null,"body":"\"1.18.1.0\""}],"_postman_id":"1871c16e-7def-40af-aa42-4c028c9365e9"},{"name":"Read Company Settings","event":[{"listen":"test","script":{"id":"d34e64b8-d903-4da0-b53d-ddb4692593c7","exec":["tests[\"Company Settings Working\"+pm.response.text()] = responseBody .has(\"name\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"88549eb4-d4f1-4874-93bd-1931fbaa6e7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/company","description":"<h2 id=\"get-company-settings\">Get Company Settings</h2>\n<ul>\n<li><p>Description: Returns Company Information.</p>\n</li>\n<li><p>Endpoint URL: <code>api/company</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","company"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"592bfdb7-9e06-476e-80ae-277da45a378b","name":"Read Company Settings","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 13 May 2025 10:15:10 GMT"},{"key":"Content-Length","value":"967"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"address1\": \"Sage House\",\n        \"address2\": \"Benton Park Road\",\n        \"address3\": \"Newcastle Upon Tyne\",\n        \"address4\": \"\",\n        \"address5\": \"NE7 7 LZ\",\n        \"allowNegativeStock\": true,\n        \"budgetingType\": 3,\n        \"companyId\": \"C4C463BE-B098-4A7D-A23B-D1A92B8DCB59\",\n        \"countryCode\": \"GB\",\n        \"creditRef\": \"SM03939302J\",\n        \"defaultChart\": 1,\n        \"email\": \"newbusinessadvice@sage.com\",\n        \"fax\": \"0191 955 3001\",\n        \"enableProjectCosting\": false,\n        \"financialYearMonth\": 1,\n        \"financialYearYear\": 2024,\n        \"fixedAsssetsLabel\": \"Assets\",\n        \"flatRateVatPercent\": 0,\n        \"lastAuditCheck\": \"13/05/2025\",\n        \"lastBackup\": \"24/04/2025\",\n        \"lastRestoreDate\": \"25/04/2025\",\n        \"lastClearAudit\": \"01/01/1970\",\n        \"lastMonthEnd\": null,\n        \"name\": \"API TEST CO\",\n        \"programMajorVersion\": 31,\n        \"programMinorVersion\": 1,\n        \"programBuildVersion\": 462,\n        \"programBugfixVersion\": 0,\n        \"recordCreateDate\": \"27/04/2010\",\n        \"recordModifyDate\": \"13/05/2025\",\n        \"telephone\": \"0191 955 3000\",\n        \"vatCashFlag\": 0,\n        \"vatRegNumber\": \"999999999\",\n        \"vatRegisteredFlag\": true,\n        \"lockDate\": \"01/01/2024\"\n    },\n    \"message\": null\n}"}],"_postman_id":"88549eb4-d4f1-4874-93bd-1931fbaa6e7d"},{"name":"Read RDA Enabled","event":[{"listen":"test","script":{"id":"e0923810-4ba1-4eb2-8b01-034c8ad6bc1e","exec":["tests[\"API Version Working\"+pm.response.text()] = responseBody .has(\"1.\");"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"eba82ee8-445d-4de8-b137-1ce78f5cb8e2","exec":[""],"type":"text/javascript","packages":{}}}],"id":"1ffffda8-06f0-4987-8581-fef8d8d59afd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/setup","description":"<h2 id=\"read-rda-enabled\">Read RDA Enabled</h2>\n<ul>\n<li><p>Description: Shows If Remote Data Access Is Enabled</p>\n</li>\n<li><p>Endpoint URL: <code>api/setup</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n<li><p>NOTES:</p>\n<ul>\n<li>Only available for V32. If used on older versions of Sage it will always return false.</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","setup"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1be83de7-c7b9-48b8-a2de-a97df2a967bd","name":"Read RDA Enabled","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 06 May 2025 12:55:34 GMT"},{"key":"Content-Length","value":"75"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"isRDAEnabled\": true\n    },\n    \"message\": null\n}"}],"_postman_id":"1ffffda8-06f0-4987-8581-fef8d8d59afd"},{"name":"Read Exchange Rates","id":"d722b395-7ce8-4045-84f4-b63bec1bd68b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/currency","description":"<h2 id=\"get-exchange-rates\">Get Exchange Rates</h2>\n<ul>\n<li><p>Description: Returns Currencies list from Settings.</p>\n</li>\n<li><p>Endpoint URL: <code>api/currency</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","currency"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ce7c9474-20e4-45c0-97a4-1d2c9db14fc4","name":"Read Exchange Rates","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/currency"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 10:50:13 GMT"},{"key":"Content-Length","value":"6824"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": 1,\n            \"code\": \"GBP\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 1,\n            \"locked\": 0,\n            \"majorUnit\": \"pounds\",\n            \"minorUnit\": \"pence\",\n            \"name\": \"Pound Sterling\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"£\"\n        },\n        {\n            \"id\": 2,\n            \"code\": \"USD\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"dollars\",\n            \"minorUnit\": \"cents\",\n            \"name\": \"US Dollar\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"$\"\n        },\n        {\n            \"id\": 3,\n            \"code\": \"EUR\",\n            \"emuMember\": 1,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"euro\",\n            \"minorUnit\": \"cent\",\n            \"name\": \"Euro\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"€\"\n        },\n        {\n            \"id\": 4,\n            \"code\": \"ARS\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"pesos\",\n            \"minorUnit\": \"centavos\",\n            \"name\": \"Argentinean Peso\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"$\"\n        },\n        {\n            \"id\": 5,\n            \"code\": \"AUD\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"dollars\",\n            \"minorUnit\": \"cents\",\n            \"name\": \"Australian Dollar\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"$\"\n        },\n        {\n            \"id\": 6,\n            \"code\": \"BRL\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"reals\",\n            \"minorUnit\": \"centavos\",\n            \"name\": \"Brazilian Real\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"$\"\n        },\n        {\n            \"id\": 7,\n            \"code\": \"CAD\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"dollars\",\n            \"minorUnit\": \"cents\",\n            \"name\": \"Canadian Dollar\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"$\"\n        },\n        {\n            \"id\": 8,\n            \"code\": \"CYP\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"pounds\",\n            \"minorUnit\": \"cents\",\n            \"name\": \"Cypriot Pound\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"£\"\n        },\n        {\n            \"id\": 9,\n            \"code\": \"DKK\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"krone\",\n            \"minorUnit\": \"ore\",\n            \"name\": \"Danish Krone\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"kr.\"\n        },\n        {\n            \"id\": 10,\n            \"code\": \"HKD\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"dollars\",\n            \"minorUnit\": \"cents\",\n            \"name\": \"Hong Kong Dollar\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"$\"\n        },\n        {\n            \"id\": 11,\n            \"code\": \"INR\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"rupees\",\n            \"minorUnit\": \"paises\",\n            \"name\": \"Indian Rupee\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"Rs.\"\n        },\n        {\n            \"id\": 12,\n            \"code\": \"IDR\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"rupiahs\",\n            \"minorUnit\": \"sens\",\n            \"name\": \"Indonesian Rupiah\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"Rp.\"\n        },\n        {\n            \"id\": 13,\n            \"code\": \"IRR\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"rials\",\n            \"minorUnit\": \"rials\",\n            \"name\": \"Iranian Rial\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"Rls\"\n        },\n        {\n            \"id\": 14,\n            \"code\": \"ILS\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"new shekels\",\n            \"minorUnit\": \"agorots\",\n            \"name\": \"Israeli Shekel\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"\"\n        },\n        {\n            \"id\": 15,\n            \"code\": \"JPY\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"yen\",\n            \"minorUnit\": \"sen\",\n            \"name\": \"Japanese Yen\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"¥\"\n        },\n        {\n            \"id\": 16,\n            \"code\": \"MYR\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"ringgits\",\n            \"minorUnit\": \"sens\",\n            \"name\": \"Malaysian Ringgit\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"RM\"\n        },\n        {\n            \"id\": 17,\n            \"code\": \"MTL\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"liri\",\n            \"minorUnit\": \"cents\",\n            \"name\": \"Maltese Lira\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"\"\n        },\n        {\n            \"id\": 18,\n            \"code\": \"MXN\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"pesos\",\n            \"minorUnit\": \"centavos\",\n            \"name\": \"Mexican Peso\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"$\"\n        },\n        {\n            \"id\": 19,\n            \"code\": \"NZD\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"dollar\",\n            \"minorUnit\": \"sents\",\n            \"name\": \"New Zealand Dollar\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"$\"\n        },\n        {\n            \"id\": 20,\n            \"code\": \"NOK\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"krone\",\n            \"minorUnit\": \"ore\",\n            \"name\": \"Norwegian Krone\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"kr\"\n        },\n        {\n            \"id\": 21,\n            \"code\": \"PHP\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"pesos\",\n            \"minorUnit\": \"centavos\",\n            \"name\": \"Philippine Peso\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"\"\n        },\n        {\n            \"id\": 22,\n            \"code\": \"RUB\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"roubles\",\n            \"minorUnit\": \"kopecks\",\n            \"name\": \"Russian Rouble\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"\"\n        },\n        {\n            \"id\": 23,\n            \"code\": \"SAR\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"riyals\",\n            \"minorUnit\": \"halalats\",\n            \"name\": \"Saudi Arabian Riyal\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"SR\"\n        },\n        {\n            \"id\": 24,\n            \"code\": \"SGD\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"dollars\",\n            \"minorUnit\": \"cents\",\n            \"name\": \"Singapore Dollar\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"$\"\n        },\n        {\n            \"id\": 25,\n            \"code\": \"ZAR\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"rand\",\n            \"minorUnit\": \"cents\",\n            \"name\": \"South African Rand\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"R\"\n        },\n        {\n            \"id\": 26,\n            \"code\": \"KRW\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"won\",\n            \"minorUnit\": \"chon\",\n            \"name\": \"South Korean Won\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"\"\n        },\n        {\n            \"id\": 27,\n            \"code\": \"SEK\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"krona\",\n            \"minorUnit\": \"ore\",\n            \"name\": \"Swedish Krona\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"\"\n        },\n        {\n            \"id\": 28,\n            \"code\": \"CHF\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"francs\",\n            \"minorUnit\": \"rappen\",\n            \"name\": \"Swiss Franc\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"SFr\"\n        },\n        {\n            \"id\": 29,\n            \"code\": \"TWD\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"dollars\",\n            \"minorUnit\": \"cents\",\n            \"name\": \"Taiwanese Dollar\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"$\"\n        },\n        {\n            \"id\": 30,\n            \"code\": \"THB\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"baht\",\n            \"minorUnit\": \"sastang\",\n            \"name\": \"Thai Baht\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"\"\n        },\n        {\n            \"id\": 31,\n            \"code\": \"PLN\",\n            \"emuMember\": 0,\n            \"exchangeRate\": 0,\n            \"locked\": 0,\n            \"majorUnit\": \"zloty\",\n            \"minorUnit\": \"grosze\",\n            \"name\": \"Zloty\",\n            \"createdDate\": \"27/04/2010 17:16:57\",\n            \"modifiedDate\": \"08/09/2020 10:51:29\",\n            \"symbol\": \"zl\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"d722b395-7ce8-4045-84f4-b63bec1bd68b"},{"name":"Update Exchange Rate","id":"46a7ec21-149e-4016-80b9-27d058810c26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n      \"id\": 2,\r\n    \"code\": \"USD\",\r\n    \"emuMember\": 0,\r\n    \"exchangeRate\": 1.2,\r\n    \"majorUnit\": \"d\",\r\n    \"minorUnit\": \"pence\",\r\n    \"name\": \"dollsss\"\r\n\r\n}"},"url":"{{url}}/api/currency","description":"<h2 id=\"patch-update-exchange-rates\">PATCH Update Exchange Rates</h2>\n<ul>\n<li><p>Description: Updates Currencies list from Settings.</p>\n</li>\n<li><p>Endpoint URL: <code>api/currency</code></p>\n</li>\n<li><p>Method: <code>PATCH</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">id // required, int, max number 100\ncode // required, string, max 3 chars\nemuMember // optional, int, 0 = false 1 = true\nexchangeRate // optional, double, max 9 chars\nmajorUnit //  optional, string, max 20 chars\nminorUnit //   optional, string, max 20 chars\nname // optional, string, max 30 chars\nsymbol // optional, string, max 3 chars\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","currency"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"51fd1553-c63b-45a8-a22d-899f79d02169","name":"Update Exchange Rate","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n      \"id\": 2,\r\n    \"code\": \"USD\",\r\n    \"emuMember\": 0,\r\n    \"exchangeRate\": 1.2,\r\n    \"majorUnit\": \"d\",\r\n    \"minorUnit\": \"pence\",\r\n    \"name\": \"dollsss\"\r\n\r\n}"},"url":"{{url}}/api/currency"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 10:52:08 GMT"},{"key":"Content-Length","value":"72"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": \"Currency updated\",\n    \"message\": null\n}"}],"_postman_id":"46a7ec21-149e-4016-80b9-27d058810c26"},{"name":"Read Countries","id":"b5f665b5-1880-4b1a-833b-863a725fad6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/country","description":"<h2 id=\"get-countries\">Get Countries</h2>\n<ul>\n<li><p>Description: Returns Countries.</p>\n</li>\n<li><p>Endpoint URL: <code>api/country</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","country"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"654c2dab-a4a9-49dd-b8c4-a19a2b712636","name":"Read Countries","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/country"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 10:56:39 GMT"},{"key":"Content-Length","value":"31759"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"code\": \"AD\",\n            \"name\": \"Andorra\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AE\",\n            \"name\": \"United Arab Emirates\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AF\",\n            \"name\": \"Afghanistan\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AG\",\n            \"name\": \"Antigua and Barbuda\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AI\",\n            \"name\": \"Anguilla\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AL\",\n            \"name\": \"Albania\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AM\",\n            \"name\": \"Armenia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AN\",\n            \"name\": \"Netherlands Antilles\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AO\",\n            \"name\": \"Angola\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AQ\",\n            \"name\": \"Antarctica\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AR\",\n            \"name\": \"Argentina\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AS\",\n            \"name\": \"American Samoa\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AT\",\n            \"name\": \"Austria\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"AU\",\n            \"name\": \"Australia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AW\",\n            \"name\": \"Aruba\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AX\",\n            \"name\": \"Aland Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"AZ\",\n            \"name\": \"Azerbaijan\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BA\",\n            \"name\": \"Bosnia-Herzegovina\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BB\",\n            \"name\": \"Barbados\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BD\",\n            \"name\": \"Bangladesh\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BE\",\n            \"name\": \"Belgium\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"BF\",\n            \"name\": \"Burkina Faso\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BG\",\n            \"name\": \"Bulgaria\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"BH\",\n            \"name\": \"Bahrain\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BI\",\n            \"name\": \"Burundi\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BJ\",\n            \"name\": \"Benin\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BL\",\n            \"name\": \"Saint Barthelemy\",\n            \"euMember\": false,\n            \"createdDate\": \"28/09/2021 12:28:16\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"BM\",\n            \"name\": \"Bermuda\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BN\",\n            \"name\": \"Brunei Darussalam\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BO\",\n            \"name\": \"Bolivia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BQ\",\n            \"name\": \"Bonaire, St. Eustatius & Saba\",\n            \"euMember\": false,\n            \"createdDate\": \"28/09/2021 12:28:16\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"BR\",\n            \"name\": \"Brazil\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BS\",\n            \"name\": \"Bahamas\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BT\",\n            \"name\": \"Bhutan\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BV\",\n            \"name\": \"Bouvet Island\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BW\",\n            \"name\": \"Botswana\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BY\",\n            \"name\": \"Belarus\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"BZ\",\n            \"name\": \"Belize\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CA\",\n            \"name\": \"Canada\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CC\",\n            \"name\": \"Cocos (Keeling) Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CD\",\n            \"name\": \"Congo (Democratic Republic)\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CF\",\n            \"name\": \"Central African Republic\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CG\",\n            \"name\": \"Congo (Brazzaville)\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CH\",\n            \"name\": \"Switzerland\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CI\",\n            \"name\": \"Cote d'Ivoire\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CK\",\n            \"name\": \"Cook Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CL\",\n            \"name\": \"Chile\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CM\",\n            \"name\": \"Cameroon Republic\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CN\",\n            \"name\": \"China\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CO\",\n            \"name\": \"Colombia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CR\",\n            \"name\": \"Costa Rica\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CS\",\n            \"name\": \"Serbia and Montenegro\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CU\",\n            \"name\": \"Cuba\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CV\",\n            \"name\": \"Cape Verde\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CW\",\n            \"name\": \"Curacao\",\n            \"euMember\": false,\n            \"createdDate\": \"28/09/2021 12:28:16\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"CX\",\n            \"name\": \"Christmas Island\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"CY\",\n            \"name\": \"Cyprus\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"CZ\",\n            \"name\": \"Czech Republic\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"DE\",\n            \"name\": \"Germany\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"DJ\",\n            \"name\": \"Djibouti\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"DK\",\n            \"name\": \"Denmark\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"DM\",\n            \"name\": \"Dominica\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"DO\",\n            \"name\": \"Dominican Republic\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"DZ\",\n            \"name\": \"Algeria\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"EC\",\n            \"name\": \"Ecuador\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"EE\",\n            \"name\": \"Estonia\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"EG\",\n            \"name\": \"Egypt\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"EH\",\n            \"name\": \"Western Sahara\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"ER\",\n            \"name\": \"Eritrea\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"ES\",\n            \"name\": \"Spain\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"ET\",\n            \"name\": \"Ethiopia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"FI\",\n            \"name\": \"Finland\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"FJ\",\n            \"name\": \"Fiji Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"FK\",\n            \"name\": \"Falkland Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"FM\",\n            \"name\": \"Micronesia, Federal States of\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"FO\",\n            \"name\": \"Faroe Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"FR\",\n            \"name\": \"France\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"GA\",\n            \"name\": \"Gabon\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GB\",\n            \"name\": \"United Kingdom\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"GD\",\n            \"name\": \"Grenada\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GE\",\n            \"name\": \"Georgia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GF\",\n            \"name\": \"French Guiana\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GG\",\n            \"name\": \"Guernsey\",\n            \"euMember\": false,\n            \"createdDate\": \"28/09/2021 12:28:16\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"GH\",\n            \"name\": \"Ghana\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GI\",\n            \"name\": \"Gibraltar\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GL\",\n            \"name\": \"Greenland\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GM\",\n            \"name\": \"Gambia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GN\",\n            \"name\": \"Guinea\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GP\",\n            \"name\": \"Guadeloupe\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GQ\",\n            \"name\": \"Equatorial Guinea\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GR\",\n            \"name\": \"Greece\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"GS\",\n            \"name\": \"South Georgia, Sandwich Isl.\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GT\",\n            \"name\": \"Guatemala\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GU\",\n            \"name\": \"Guam\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GW\",\n            \"name\": \"Guinea-Bissau\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"GY\",\n            \"name\": \"Guyana\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"HK\",\n            \"name\": \"Hong Kong\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"HM\",\n            \"name\": \"Heard Is. and McDonald Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"HN\",\n            \"name\": \"Honduras\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"HR\",\n            \"name\": \"Croatia\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"HT\",\n            \"name\": \"Haiti\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"HU\",\n            \"name\": \"Hungary\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"ID\",\n            \"name\": \"Indonesia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"IE\",\n            \"name\": \"Ireland\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"IL\",\n            \"name\": \"Israel\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"IM\",\n            \"name\": \"Isle of Man\",\n            \"euMember\": false,\n            \"createdDate\": \"28/09/2021 12:28:16\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"IN\",\n            \"name\": \"India\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"IO\",\n            \"name\": \"British Indian Ocean Territory\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"IQ\",\n            \"name\": \"Iraq\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"IR\",\n            \"name\": \"Iran, Islamic Republic of\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"IS\",\n            \"name\": \"Iceland\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"IT\",\n            \"name\": \"Italy\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"JE\",\n            \"name\": \"Jersey\",\n            \"euMember\": false,\n            \"createdDate\": \"28/09/2021 12:28:16\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"JM\",\n            \"name\": \"Jamaica\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"JO\",\n            \"name\": \"Jordan\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"JP\",\n            \"name\": \"Japan\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"KE\",\n            \"name\": \"Kenya\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"KG\",\n            \"name\": \"Kyrgyzstan\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"KH\",\n            \"name\": \"Cambodia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"KI\",\n            \"name\": \"Kiribati\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"KM\",\n            \"name\": \"Comoros\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"KN\",\n            \"name\": \"Saint Kitts and Nevis\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"KP\",\n            \"name\": \"Korea (North)\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"KR\",\n            \"name\": \"Korea (South)\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"KW\",\n            \"name\": \"Kuwait\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"KY\",\n            \"name\": \"Cayman Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"KZ\",\n            \"name\": \"Kazakhstan\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"LA\",\n            \"name\": \"Laos\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"LB\",\n            \"name\": \"Lebanon\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"LC\",\n            \"name\": \"Saint Lucia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"LI\",\n            \"name\": \"Liechtenstein\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"LK\",\n            \"name\": \"Sri Lanka\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"LR\",\n            \"name\": \"Liberia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"LS\",\n            \"name\": \"Lesotho\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"LT\",\n            \"name\": \"Lithuania\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"LU\",\n            \"name\": \"Luxembourg\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"LV\",\n            \"name\": \"Latvia\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"LY\",\n            \"name\": \"Libya\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MA\",\n            \"name\": \"Morocco\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MC\",\n            \"name\": \"Monaco\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MD\",\n            \"name\": \"Moldova, Republic of\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"ME\",\n            \"name\": \"Montenegro\",\n            \"euMember\": false,\n            \"createdDate\": \"28/09/2021 12:28:16\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"MF\",\n            \"name\": \"Saint Martin (French Part)\",\n            \"euMember\": false,\n            \"createdDate\": \"28/09/2021 12:28:16\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"MG\",\n            \"name\": \"Madagascar\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MH\",\n            \"name\": \"Marshall Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MK\",\n            \"name\": \"Macedonia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"ML\",\n            \"name\": \"Mali Republic\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MM\",\n            \"name\": \"Myanmar\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MN\",\n            \"name\": \"Mongolia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MO\",\n            \"name\": \"Macao\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MP\",\n            \"name\": \"Northern Mariana Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MQ\",\n            \"name\": \"Martinique\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MR\",\n            \"name\": \"Mauritania\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MS\",\n            \"name\": \"Montserrat\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MT\",\n            \"name\": \"Malta\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"MU\",\n            \"name\": \"Mauritius\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MV\",\n            \"name\": \"Maldives\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MW\",\n            \"name\": \"Malawi\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MX\",\n            \"name\": \"Mexico\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MY\",\n            \"name\": \"Malaysia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"MZ\",\n            \"name\": \"Mozambique\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"NA\",\n            \"name\": \"Namibia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"NC\",\n            \"name\": \"New Caledonia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"NE\",\n            \"name\": \"Niger Republic\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"NF\",\n            \"name\": \"Norfolk Island\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"NG\",\n            \"name\": \"Nigeria\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"NI\",\n            \"name\": \"Nicaragua\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"NL\",\n            \"name\": \"Netherlands\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"NO\",\n            \"name\": \"Norway\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"NP\",\n            \"name\": \"Nepal\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"NR\",\n            \"name\": \"Nauru\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"NU\",\n            \"name\": \"Niue\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"NZ\",\n            \"name\": \"New Zealand\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"OM\",\n            \"name\": \"Oman\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"PA\",\n            \"name\": \"Panama\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"PE\",\n            \"name\": \"Peru\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"PF\",\n            \"name\": \"French Polynesia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"PG\",\n            \"name\": \"Papua New Guinea\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"PH\",\n            \"name\": \"Philippines\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"PK\",\n            \"name\": \"Pakistan\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"PL\",\n            \"name\": \"Poland\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"PM\",\n            \"name\": \"Saint Pierre and Miquelon\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"PN\",\n            \"name\": \"Pitcairn\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"PR\",\n            \"name\": \"Puerto Rico\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"PS\",\n            \"name\": \"Palestinian Territ., Occupied\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"PT\",\n            \"name\": \"Portugal\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"PW\",\n            \"name\": \"Palau\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"PY\",\n            \"name\": \"Paraguay\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"QA\",\n            \"name\": \"Qatar\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"RE\",\n            \"name\": \"Reunion\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"RO\",\n            \"name\": \"Romania\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"RS\",\n            \"name\": \"Serbia\",\n            \"euMember\": false,\n            \"createdDate\": \"28/09/2021 12:28:16\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"RU\",\n            \"name\": \"Russian Federation\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"RW\",\n            \"name\": \"Rwanda\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SA\",\n            \"name\": \"Saudi Arabia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SB\",\n            \"name\": \"Solomon Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SC\",\n            \"name\": \"Seychelles\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SD\",\n            \"name\": \"Sudan Republic\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SE\",\n            \"name\": \"Sweden\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"SG\",\n            \"name\": \"Singapore\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SH\",\n            \"name\": \"Saint Helena\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SI\",\n            \"name\": \"Slovenia\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"SJ\",\n            \"name\": \"Svalbard and Jan Mayen\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SK\",\n            \"name\": \"Slovakia\",\n            \"euMember\": true,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"SL\",\n            \"name\": \"Sierra Leone\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SM\",\n            \"name\": \"San Marino\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SN\",\n            \"name\": \"Senegal\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SO\",\n            \"name\": \"Somali Republic\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SR\",\n            \"name\": \"Suriname\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"ST\",\n            \"name\": \"Sao Tome & Principe\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SV\",\n            \"name\": \"El Salvador\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SX\",\n            \"name\": \"Sint Maarten (Dutch Part)\",\n            \"euMember\": false,\n            \"createdDate\": \"28/09/2021 12:28:16\",\n            \"modifiedDate\": \"28/09/2021 12:28:16\"\n        },\n        {\n            \"code\": \"SY\",\n            \"name\": \"Syrian Arab Republic\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"SZ\",\n            \"name\": \"Swaziland\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TC\",\n            \"name\": \"Turks and Caicos Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TD\",\n            \"name\": \"Chad\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TF\",\n            \"name\": \"French Southern Territories\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TG\",\n            \"name\": \"Togo Republic\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TH\",\n            \"name\": \"Thailand\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TJ\",\n            \"name\": \"Tajikistan\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TK\",\n            \"name\": \"Tokelau\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TL\",\n            \"name\": \"Timor-Leste\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TM\",\n            \"name\": \"Turkmenistan\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TN\",\n            \"name\": \"Tunisia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TO\",\n            \"name\": \"Tonga Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TR\",\n            \"name\": \"Turkiye\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"05/05/2023 16:33:56\"\n        },\n        {\n            \"code\": \"TT\",\n            \"name\": \"Trinidad/Tobago\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TV\",\n            \"name\": \"Tuvalu\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TW\",\n            \"name\": \"Taiwan, Province of China\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"TZ\",\n            \"name\": \"Tanzania\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"UA\",\n            \"name\": \"Ukraine\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"UG\",\n            \"name\": \"Uganda\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"UM\",\n            \"name\": \"US Minor Outlying Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"US\",\n            \"name\": \"United States\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"UY\",\n            \"name\": \"Uruguay\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"UZ\",\n            \"name\": \"Uzbekistan\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"VA\",\n            \"name\": \"Holy See (Vatican City State)\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"VC\",\n            \"name\": \"Saint Vincent and Grenadines\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"VE\",\n            \"name\": \"Venezuela\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"VG\",\n            \"name\": \"Virgin Islands, British\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"VI\",\n            \"name\": \"Virgin Islands, US\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"VN\",\n            \"name\": \"Vietnam\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"VU\",\n            \"name\": \"Vanuatu\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"WF\",\n            \"name\": \"Wallis & Futuna Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"WS\",\n            \"name\": \"Samoa\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"XC\",\n            \"name\": \"Channel Islands\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"XI\",\n            \"name\": \"Northern Ireland\",\n            \"euMember\": true,\n            \"createdDate\": \"24/09/2021 11:33:45\",\n            \"modifiedDate\": \"24/09/2021 11:33:45\"\n        },\n        {\n            \"code\": \"XU\",\n            \"name\": \"Great Britain\",\n            \"euMember\": false,\n            \"createdDate\": \"24/09/2021 11:33:45\",\n            \"modifiedDate\": \"24/09/2021 11:33:45\"\n        },\n        {\n            \"code\": \"XX\",\n            \"name\": \"Unknown Country\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"YE\",\n            \"name\": \"Yemen (Rep of)\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"YT\",\n            \"name\": \"Mayotte\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"ZA\",\n            \"name\": \"South Africa\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"ZM\",\n            \"name\": \"Zambia\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        },\n        {\n            \"code\": \"ZW\",\n            \"name\": \"Zimbabwe\",\n            \"euMember\": false,\n            \"createdDate\": \"21/08/2018 18:18:50\",\n            \"modifiedDate\": \"21/08/2018 18:18:50\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"b5f665b5-1880-4b1a-833b-863a725fad6e"},{"name":"Read Couriers","id":"b73f3957-7ce0-4ffd-ae60-d97ac8474615","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/courier","description":"<h2 id=\"get-couriers\">Get Couriers</h2>\n<ul>\n<li><p>Description: Returns Couriers.</p>\n</li>\n<li><p>Endpoint URL: <code>api/courier</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","courier"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"29bbce2b-a764-4ac3-ae75-7e603bee0e29","name":"Read Couriers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/courier"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 11 Mar 2025 15:56:32 GMT"},{"key":"Content-Length","value":"9734"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": 1,\n            \"name\": \"Royal Mail\",\n            \"www\": \"www.royalmail.co.uk\",\n            \"search\": \"www.royalmail.co.uk/tracking\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"11/03/2025\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Another Courier\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"11/03/2025\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 15,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 16,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 17,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 18,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 19,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 20,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 21,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 22,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 23,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 24,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 25,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 26,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 27,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 28,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 29,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 30,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 31,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 32,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 33,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 34,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 35,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 36,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 37,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 38,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 39,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 40,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 41,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 42,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 43,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 44,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 45,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 46,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 47,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 48,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 49,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 50,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 51,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 52,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 53,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 54,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 55,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 56,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 57,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 58,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 59,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 60,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 61,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 62,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 63,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 64,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 65,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 66,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 67,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 68,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 69,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 70,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 71,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 72,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 73,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 74,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 75,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 76,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 77,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 78,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 79,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 80,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 81,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 82,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 83,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 84,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 85,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 86,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 87,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 88,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 89,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 90,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 91,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 92,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 93,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 94,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 95,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 96,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 97,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 98,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 99,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        },\n        {\n            \"id\": 100,\n            \"name\": \"\",\n            \"www\": \"\",\n            \"search\": \"\",\n            \"createdDate\": \"22/07/2008\",\n            \"modifiedDate\": \"21/08/2018\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"b73f3957-7ce0-4ffd-ae60-d97ac8474615"},{"name":"Read Nominals","id":"24a8773d-30eb-4a8a-bf9a-dd0c5b6d2892","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/nominal/","description":"<h2 id=\"get-nominals\">Get Nominals</h2>\n<ul>\n<li><p>Description: Returns Nominals.</p>\n</li>\n<li><p>Endpoint URL: <code>api/nominal/</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","nominal",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"db4c931c-5757-4657-b621-7faba7d7792b","name":"Read Nominals","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/nominal/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 10:59:55 GMT"},{"key":"Content-Length","value":"14052"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"accountRef\": \"0010\",\n            \"name\": \"Freehold Property\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"0011\",\n            \"name\": \"Leasehold Property\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"0020\",\n            \"name\": \"Plant and Machinery\",\n            \"type\": 1,\n            \"balance\": 50000,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"0021\",\n            \"name\": \"Plant/Machinery Depreciation\",\n            \"type\": 1,\n            \"balance\": -3485,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"0030\",\n            \"name\": \"Office Equipment\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"0031\",\n            \"name\": \"Office Equipment Depreciation\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"0040\",\n            \"name\": \"Furniture and Fixtures\",\n            \"type\": 1,\n            \"balance\": 16900,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"0041\",\n            \"name\": \"Furniture/Fixture Depreciation\",\n            \"type\": 1,\n            \"balance\": -93,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"0050\",\n            \"name\": \"Motor Vehicles\",\n            \"type\": 1,\n            \"balance\": 20300,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"0051\",\n            \"name\": \"Motor Vehicles Depreciation\",\n            \"type\": 1,\n            \"balance\": -2091.92,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"1001\",\n            \"name\": \"Stock\",\n            \"type\": 1,\n            \"balance\": 35000,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"1002\",\n            \"name\": \"Work in Progress\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"1003\",\n            \"name\": \"Finished Goods\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"1100\",\n            \"name\": \"Debtors Control Account\",\n            \"type\": 4,\n            \"balance\": 90040.61,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"1101\",\n            \"name\": \"Sundry Debtors\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"1102\",\n            \"name\": \"Other Debtors\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"1103\",\n            \"name\": \"Prepayments\",\n            \"type\": 4,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"1200\",\n            \"name\": \"Bank Current Account\",\n            \"type\": 2,\n            \"balance\": -17540.09,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"1210\",\n            \"name\": \"Bank Deposit Account\",\n            \"type\": 2,\n            \"balance\": 3510,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"1220\",\n            \"name\": \"Building Society Account\",\n            \"type\": 2,\n            \"balance\": 507.53000000000003,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"1230\",\n            \"name\": \"Petty Cash\",\n            \"type\": 2,\n            \"balance\": 1130.48,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"1235\",\n            \"name\": \"Cash Register\",\n            \"type\": 2,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"1240\",\n            \"name\": \"Company Credit Card\",\n            \"type\": 2,\n            \"balance\": 9358.97,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2100\",\n            \"name\": \"Creditors Control Account\",\n            \"type\": 4,\n            \"balance\": -44502.68,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2101\",\n            \"name\": \"Sundry Creditors\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2102\",\n            \"name\": \"Other Creditors\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2109\",\n            \"name\": \"Accruals\",\n            \"type\": 4,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2200\",\n            \"name\": \"Sales Tax Control Account\",\n            \"type\": 4,\n            \"balance\": -22440.98,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2201\",\n            \"name\": \"Purchase Tax Control Account\",\n            \"type\": 4,\n            \"balance\": 12203.64,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2202\",\n            \"name\": \"VAT Liability\",\n            \"type\": 4,\n            \"balance\": 14800.35,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2204\",\n            \"name\": \"Manual Adjustments\",\n            \"type\": 4,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2205\",\n            \"name\": \"Union OSS Tax Control Account\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2206\",\n            \"name\": \"Non-union OSS Tax Control Account\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2207\",\n            \"name\": \"IOSS Tax Control Account\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2210\",\n            \"name\": \"P.A.Y.E.\",\n            \"type\": 1,\n            \"balance\": -5396.79,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2211\",\n            \"name\": \"National Insurance\",\n            \"type\": 1,\n            \"balance\": -2006.98,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2220\",\n            \"name\": \"Net Wages\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2230\",\n            \"name\": \"Pension Fund\",\n            \"type\": 1,\n            \"balance\": -120,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2300\",\n            \"name\": \"Loans\",\n            \"type\": 1,\n            \"balance\": -6895,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2310\",\n            \"name\": \"Hire Purchase\",\n            \"type\": 1,\n            \"balance\": -6160,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2320\",\n            \"name\": \"Corporation Tax\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"2330\",\n            \"name\": \"Mortgages\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"3000\",\n            \"name\": \"Ordinary Shares\",\n            \"type\": 1,\n            \"balance\": -96332,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"3010\",\n            \"name\": \"Preference Shares\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"3100\",\n            \"name\": \"Reserves\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"3101\",\n            \"name\": \"Undistributed Reserves\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"3200\",\n            \"name\": \"Profit and Loss Account\",\n            \"type\": 4,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"3201\",\n            \"name\": \"Drawings\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4000\",\n            \"name\": \"Sales North\",\n            \"type\": 4,\n            \"balance\": -180323.53,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4001\",\n            \"name\": \"Sales South\",\n            \"type\": 1,\n            \"balance\": -1230,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4002\",\n            \"name\": \"Sales Scotland\",\n            \"type\": 1,\n            \"balance\": -9432.51,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4003\",\n            \"name\": \"Sales Wales\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4004\",\n            \"name\": \"Sales International\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4009\",\n            \"name\": \"Discounts Allowed\",\n            \"type\": 4,\n            \"balance\": 133.5,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4100\",\n            \"name\": \"Sales Export\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4200\",\n            \"name\": \"Sales of Assets\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4400\",\n            \"name\": \"Credit Charges\",\n            \"type\": 4,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4900\",\n            \"name\": \"Miscellaneous Income\",\n            \"type\": 1,\n            \"balance\": -60.029999999999994,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4901\",\n            \"name\": \"Royalties Received\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4902\",\n            \"name\": \"Commissions Received\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4903\",\n            \"name\": \"Insurance Claims\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"4905\",\n            \"name\": \"Distribution and Carriage\",\n            \"type\": 1,\n            \"balance\": -870,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"5000\",\n            \"name\": \"Materials Purchased\",\n            \"type\": 1,\n            \"balance\": 51446.479999999996,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"5001\",\n            \"name\": \"Materials Imported\",\n            \"type\": 1,\n            \"balance\": 23733,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"5002\",\n            \"name\": \"Miscellaneous Purchases\",\n            \"type\": 1,\n            \"balance\": 1158.53,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"5003\",\n            \"name\": \"Packaging\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"5009\",\n            \"name\": \"Discounts Taken\",\n            \"type\": 4,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"5100\",\n            \"name\": \"Carriage\",\n            \"type\": 1,\n            \"balance\": 1.26,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"5101\",\n            \"name\": \"Import Duty\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"5102\",\n            \"name\": \"Transport Insurance\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"5200\",\n            \"name\": \"Opening Stock\",\n            \"type\": 1,\n            \"balance\": 40710,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"5201\",\n            \"name\": \"Closing Stock\",\n            \"type\": 1,\n            \"balance\": -35000,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"6000\",\n            \"name\": \"Productive Labour\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"6001\",\n            \"name\": \"Cost of Sales Labour\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"6002\",\n            \"name\": \"Sub-Contractors\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"6100\",\n            \"name\": \"Sales Commissions\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"6200\",\n            \"name\": \"Sales Promotions\",\n            \"type\": 1,\n            \"balance\": 50,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"6201\",\n            \"name\": \"Advertising\",\n            \"type\": 1,\n            \"balance\": 465,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"6202\",\n            \"name\": \"Gifts and Samples\",\n            \"type\": 1,\n            \"balance\": 115,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"6203\",\n            \"name\": \"P.R. (Literature & Brochures)\",\n            \"type\": 1,\n            \"balance\": 1050,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"6900\",\n            \"name\": \"Miscellaneous Expenses\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7000\",\n            \"name\": \"Gross Wages\",\n            \"type\": 1,\n            \"balance\": 32472.109999999997,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7001\",\n            \"name\": \"Directors Salaries\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7002\",\n            \"name\": \"Directors Remuneration\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7003\",\n            \"name\": \"Staff Salaries\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7004\",\n            \"name\": \"Wages - Regular\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7005\",\n            \"name\": \"Wages - Casual\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7006\",\n            \"name\": \"Employers N.I.\",\n            \"type\": 1,\n            \"balance\": 3327.2400000000002,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7007\",\n            \"name\": \"Employers Pensions\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7008\",\n            \"name\": \"Recruitment Expenses\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7009\",\n            \"name\": \"Adjustments\",\n            \"type\": 1,\n            \"balance\": 255,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7010\",\n            \"name\": \"SSP Reclaimed\",\n            \"type\": 1,\n            \"balance\": 40,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7011\",\n            \"name\": \"SMP Reclaimed\",\n            \"type\": 1,\n            \"balance\": 67.6,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7100\",\n            \"name\": \"Rent\",\n            \"type\": 1,\n            \"balance\": 21000,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7102\",\n            \"name\": \"Water Rates\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7103\",\n            \"name\": \"General Rates\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7104\",\n            \"name\": \"Premises Insurance\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7200\",\n            \"name\": \"Electricity\",\n            \"type\": 1,\n            \"balance\": 1252,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7201\",\n            \"name\": \"Gas\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7202\",\n            \"name\": \"Oil\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7203\",\n            \"name\": \"Other Heating Costs\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7300\",\n            \"name\": \"Fuel and Oil\",\n            \"type\": 1,\n            \"balance\": 15,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7301\",\n            \"name\": \"Repairs and Servicing\",\n            \"type\": 1,\n            \"balance\": 88.179999999999993,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7302\",\n            \"name\": \"Licences\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7303\",\n            \"name\": \"Vehicle Insurance\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7304\",\n            \"name\": \"Miscellaneous Motor Expenses\",\n            \"type\": 1,\n            \"balance\": 67.5,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7350\",\n            \"name\": \"Scale Charges\",\n            \"type\": 1,\n            \"balance\": 90.27000000000001,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7400\",\n            \"name\": \"Travelling\",\n            \"type\": 1,\n            \"balance\": 201,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7401\",\n            \"name\": \"Car Hire\",\n            \"type\": 1,\n            \"balance\": 150,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7402\",\n            \"name\": \"Hotels\",\n            \"type\": 1,\n            \"balance\": 720,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7403\",\n            \"name\": \"U.K. Entertainment\",\n            \"type\": 1,\n            \"balance\": 5.5,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7404\",\n            \"name\": \"Overseas Entertainment\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7405\",\n            \"name\": \"Overseas Travelling\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7406\",\n            \"name\": \"Subsistence\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7500\",\n            \"name\": \"Printing\",\n            \"type\": 1,\n            \"balance\": 54.1,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7501\",\n            \"name\": \"Postage and Carriage\",\n            \"type\": 1,\n            \"balance\": 3.5,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7502\",\n            \"name\": \"Telephone\",\n            \"type\": 1,\n            \"balance\": 178.72,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7503\",\n            \"name\": \"Telex/Telegram/Facsimile\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7504\",\n            \"name\": \"Office Stationery\",\n            \"type\": 1,\n            \"balance\": 55,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7505\",\n            \"name\": \"Books etc.\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7600\",\n            \"name\": \"Legal Fees\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7601\",\n            \"name\": \"Audit and Accountancy Fees\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7602\",\n            \"name\": \"Consultancy Fees\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7603\",\n            \"name\": \"Professional Fees\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7700\",\n            \"name\": \"Equipment Hire\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7701\",\n            \"name\": \"Office Machine Maintenance\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7800\",\n            \"name\": \"Repairs and Renewals\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7801\",\n            \"name\": \"Cleaning\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7802\",\n            \"name\": \"Laundry\",\n            \"type\": 1,\n            \"balance\": 50,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7803\",\n            \"name\": \"Premises Expenses\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7900\",\n            \"name\": \"Bank Interest Paid\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7901\",\n            \"name\": \"Bank Charges\",\n            \"type\": 1,\n            \"balance\": 5.5600000000000005,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7902\",\n            \"name\": \"Currency Charges\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7903\",\n            \"name\": \"Loan Interest Paid\",\n            \"type\": 1,\n            \"balance\": 105.45,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7904\",\n            \"name\": \"H.P. Interest\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7905\",\n            \"name\": \"Credit Charges\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"7906\",\n            \"name\": \"Exchange Rate Variance\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8000\",\n            \"name\": \"Depreciation\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8001\",\n            \"name\": \"Plant/Machinery Depreciation\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8002\",\n            \"name\": \"Furniture/Fitting Depreciation\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8003\",\n            \"name\": \"Vehicle Depreciation\",\n            \"type\": 1,\n            \"balance\": 1009.9200000000001,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8004\",\n            \"name\": \"Office Equipment Depreciation\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8100\",\n            \"name\": \"Bad Debt Write Off\",\n            \"type\": 4,\n            \"balance\": 0.01,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8102\",\n            \"name\": \"Bad Debt Provision\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8200\",\n            \"name\": \"Donations\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8201\",\n            \"name\": \"Subscriptions\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8202\",\n            \"name\": \"Clothing Costs\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8203\",\n            \"name\": \"Training Costs\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8204\",\n            \"name\": \"Insurance\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8205\",\n            \"name\": \"Refreshments\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8206\",\n            \"name\": \"Cash Register Discrepancies\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"8222\",\n            \"name\": \"Bank Interest Received\",\n            \"type\": 1,\n            \"balance\": -2.5,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"9001\",\n            \"name\": \"Taxation\",\n            \"type\": 1,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"9998\",\n            \"name\": \"Suspense Account\",\n            \"type\": 4,\n            \"balance\": 0,\n            \"inactiveFlag\": 0\n        },\n        {\n            \"accountRef\": \"9999\",\n            \"name\": \"Mispostings Account\",\n            \"type\": 4,\n            \"balance\": 155,\n            \"inactiveFlag\": 0\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"24a8773d-30eb-4a8a-bf9a-dd0c5b6d2892"},{"name":"Read Tax Codes","id":"36b45dce-9e7c-4285-b551-cfeeb9cf5af1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/taxCode","description":"<h2 id=\"get-tax-codes\">Get Tax Codes</h2>\n<ul>\n<li><p>Description: Returns Tax Codes.</p>\n</li>\n<li><p>Endpoint URL: <code>api/taxCode</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","taxCode"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"93d94e27-dab7-4c66-bc6d-42a50e1cdbe4","name":"Read Tax Codes","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/taxCode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 11:00:59 GMT"},{"key":"Content-Length","value":"4894"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"index\": 0,\n            \"description\": \"Zero rated\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 1,\n            \"description\": \"Standard rate\",\n            \"rate\": 20\n        },\n        {\n            \"index\": 2,\n            \"description\": \"Exempt transactions\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 3,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 4,\n            \"description\": \"Sale of goods to VAT registered customers in EC\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 5,\n            \"description\": \"Lower Rate\",\n            \"rate\": 5\n        },\n        {\n            \"index\": 6,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 7,\n            \"description\": \"Zero rated purchases of goods from suppliers in EC\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 8,\n            \"description\": \"Standard rated purchases of goods from suppliers in EC\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 9,\n            \"description\": \"Non-Vatable Tax Code\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 10,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 11,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 12,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 13,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 14,\n            \"description\": \"Import of goods - No VAT\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 15,\n            \"description\": \"Purchase of services from ROW - Reverse charge\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 16,\n            \"description\": \"Purchase of services from ROW - No VAT\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 17,\n            \"description\": \"Import of goods - Under import reverse charge threshold\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 18,\n            \"description\": \"Import of goods - Postponed VAT\",\n            \"rate\": 20\n        },\n        {\n            \"index\": 19,\n            \"description\": \"Import of goods - VAT not postponed\",\n            \"rate\": 20\n        },\n        {\n            \"index\": 20,\n            \"description\": \"Domestic reverse charge\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 21,\n            \"description\": \"CIS reverse charge – Standard rate\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 22,\n            \"description\": \"Sales of services to VAT registered customers in EC\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 23,\n            \"description\": \"Zero rated purchases of services from suppliers in EC\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 24,\n            \"description\": \"Standard rated purchases of services from suppliers in EC\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 25,\n            \"description\": \"Flat Rate Capital Asset\",\n            \"rate\": 20\n        },\n        {\n            \"index\": 26,\n            \"description\": \"CIS reverse charge – Reduced rate\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 27,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 28,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 29,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 30,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 31,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 32,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 33,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 34,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 35,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 36,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 37,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 38,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 39,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 40,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 41,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 42,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 43,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 44,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 45,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 46,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 47,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 48,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 49,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 50,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 51,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 52,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 53,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 54,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 55,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 56,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 57,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 58,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 59,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 60,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 61,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 62,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 63,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 64,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 65,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 66,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 67,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 68,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 69,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 70,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 71,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 72,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 73,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 74,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 75,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 76,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 77,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 78,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 79,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 80,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 81,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 82,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 83,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 84,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 85,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 86,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 87,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 88,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 89,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 90,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 91,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 92,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 93,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 94,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 95,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 96,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 97,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 98,\n            \"description\": \"\",\n            \"rate\": 0\n        },\n        {\n            \"index\": 99,\n            \"description\": \"\",\n            \"rate\": 0\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"36b45dce-9e7c-4285-b551-cfeeb9cf5af1"},{"name":"Read Control Accounts","id":"13036faf-f75d-4bb0-a3d4-bc4c13e07ff4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/control","description":"<h2 id=\"get-control-accounts\">Get Control Accounts</h2>\n<ul>\n<li><p>Description: Returns Control Accounts.</p>\n</li>\n<li><p>Endpoint URL: <code>api/control</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","control"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6371eb07-e89a-4445-9e87-5d78eebfa251","name":"Read Control Accounts","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/control"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 11:01:40 GMT"},{"key":"Content-Length","value":"402"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"accrualsNo\": 2109,\n        \"badDebtsNo\": 0,\n        \"creditorsNo\": 2100,\n        \"debtorsNo\": 1100,\n        \"defBankNo\": 1200,\n        \"defFinanceNo\": 4400,\n        \"defRevalueNo\": 9998,\n        \"defSalesNo\": 4000,\n        \"manualAdjustmentsNo\": 2204,\n        \"mispostingsNo\": 9999,\n        \"pDiscountNo\": 5009,\n        \"plYearAcNo\": 0,\n        \"prepaymentsNo\": 1103,\n        \"pTaxNo\": 2201,\n        \"sDiscountNo\": 4009,\n        \"sTaxNo\": 2200,\n        \"suspenseNo\": 9998,\n        \"uniqueNo\": 0,\n        \"vatLiabilityNo\": 2202\n    },\n    \"message\": null\n}"}],"_postman_id":"13036faf-f75d-4bb0-a3d4-bc4c13e07ff4"},{"name":"Get Payment Methods","id":"04a6ee09-a93c-4f81-b8d8-9d1160f11282","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/paymentMethod","description":"<h2 id=\"get-payment-methods\">Get Payment Methods</h2>\n<ul>\n<li><p>Description: Fetches all Payment Methods</p>\n</li>\n<li><p>Endpoint URL: <code>api/paymentMethod</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","paymentMethod"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d1cb1fe1-5f10-49eb-84ca-465d1bccca14","name":"Get Payment Methods","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/paymentMethod"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:31:00 GMT"},{"key":"Content-Length","value":"768"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": 1,\n            \"description\": \"BACS/SEPA\",\n            \"isOnline\": 1,\n            \"isReadonly\": 1\n        },\n        {\n            \"id\": 2,\n            \"description\": \"Cash\",\n            \"isOnline\": 0,\n            \"isReadonly\": 1\n        },\n        {\n            \"id\": 3,\n            \"description\": \"Cheque\",\n            \"isOnline\": 0,\n            \"isReadonly\": 1\n        },\n        {\n            \"id\": 4,\n            \"description\": \"Credit Card\",\n            \"isOnline\": 1,\n            \"isReadonly\": 1\n        },\n        {\n            \"id\": 5,\n            \"description\": \"DD/SO\",\n            \"isOnline\": 1,\n            \"isReadonly\": 1\n        },\n        {\n            \"id\": 6,\n            \"description\": \"Other\",\n            \"isOnline\": 0,\n            \"isReadonly\": 1\n        },\n        {\n            \"id\": 7,\n            \"description\": \"Factor\",\n            \"isOnline\": 0,\n            \"isReadonly\": 0\n        },\n        {\n            \"id\": 8,\n            \"description\": \"User Defined 2\",\n            \"isOnline\": 0,\n            \"isReadonly\": 0\n        },\n        {\n            \"id\": 9,\n            \"description\": \"User Defined 3\",\n            \"isOnline\": 0,\n            \"isReadonly\": 0\n        },\n        {\n            \"id\": 10,\n            \"description\": \"User Defined 4\",\n            \"isOnline\": 0,\n            \"isReadonly\": 0\n        },\n        {\n            \"id\": 11,\n            \"description\": \"User Defined 5\",\n            \"isOnline\": 0,\n            \"isReadonly\": 0\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"04a6ee09-a93c-4f81-b8d8-9d1160f11282"},{"name":"Read Departments","id":"422482d5-659b-4c3f-8a14-71e73ae21918","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/department","description":"<h2 id=\"get-departments\">Get Departments</h2>\n<ul>\n<li><p>Description: Returns Departments.</p>\n</li>\n<li><p>Endpoint URL: <code>api/department</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","department"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3b1116e9-4720-4ab4-84aa-60278b8e4e2b","name":"Read Departments","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/department"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 11:02:28 GMT"},{"key":"Content-Length","value":"927"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"reference\": \"0\",\n            \"name\": \"Default\",\n            \"id\": 0,\n            \"recordCreateDate\": \"21/08/2018\",\n            \"recordModifyDate\": \"05/05/2023\"\n        },\n        {\n            \"reference\": \"1\",\n            \"name\": \"Sales\",\n            \"id\": 1,\n            \"recordCreateDate\": \"21/08/2018\",\n            \"recordModifyDate\": \"05/05/2023\"\n        },\n        {\n            \"reference\": \"2\",\n            \"name\": \"Purchasing\",\n            \"id\": 2,\n            \"recordCreateDate\": \"21/08/2018\",\n            \"recordModifyDate\": \"05/05/2023\"\n        },\n        {\n            \"reference\": \"3\",\n            \"name\": \"Accounts\",\n            \"id\": 3,\n            \"recordCreateDate\": \"21/08/2018\",\n            \"recordModifyDate\": \"05/05/2023\"\n        },\n        {\n            \"reference\": \"4\",\n            \"name\": \"Admin\",\n            \"id\": 4,\n            \"recordCreateDate\": \"21/08/2018\",\n            \"recordModifyDate\": \"05/05/2023\"\n        },\n        {\n            \"reference\": \"5\",\n            \"name\": \"Marketing\",\n            \"id\": 5,\n            \"recordCreateDate\": \"21/08/2018\",\n            \"recordModifyDate\": \"05/05/2023\"\n        },\n        {\n            \"reference\": \"6\",\n            \"name\": \"Installations\",\n            \"id\": 6,\n            \"recordCreateDate\": \"21/08/2018\",\n            \"recordModifyDate\": \"05/05/2023\"\n        },\n        {\n            \"reference\": \"7\",\n            \"name\": \"Workshop\",\n            \"id\": 7,\n            \"recordCreateDate\": \"21/08/2018\",\n            \"recordModifyDate\": \"05/05/2023\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"422482d5-659b-4c3f-8a14-71e73ae21918"},{"name":"Read Chart of Accounts","id":"0d043418-0589-44d3-988f-84662a378c4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/coa","description":"<h2 id=\"get-chart-of-accounts\">Get Chart Of Accounts</h2>\n<ul>\n<li><p>Description: Returns 1st Chart Of Accounts.</p>\n</li>\n<li><p>Endpoint URL: <code>api/coa</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","coa"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c2084128-b66f-4177-bc44-d24a9c411a6e","name":"Read Chart of Accounts","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/coa"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"no-cache"},{"key":"pragma","value":"no-cache"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"expires","value":"-1"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"date","value":"Wed, 15 Apr 2026 08:55:28 GMT"},{"key":"content-length","value":"40440"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Product Sales\",\n            \"low\": \"4000\",\n            \"high\": \"4099\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Export Sales\",\n            \"low\": \"4100\",\n            \"high\": \"4199\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Sales of Assets\",\n            \"low\": \"4200\",\n            \"high\": \"4299\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Credit Charges (Late Payments)\",\n            \"low\": \"4400\",\n            \"high\": \"4499\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Other Sales\",\n            \"low\": \"4900\",\n            \"high\": \"4999\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Purchases\",\n            \"low\": \"5000\",\n            \"high\": \"5099\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Purchase Charges\",\n            \"low\": \"5100\",\n            \"high\": \"5199\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Stock\",\n            \"low\": \"5200\",\n            \"high\": \"5299\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Labour\",\n            \"low\": \"6000\",\n            \"high\": \"6099\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Commissions\",\n            \"low\": \"6100\",\n            \"high\": \"6199\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Sales Promotion\",\n            \"low\": \"6200\",\n            \"high\": \"6299\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Miscellaneous Expenses\",\n            \"low\": \"6900\",\n            \"high\": \"6999\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Gross Wages\",\n            \"low\": \"7000\",\n            \"high\": \"7099\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Rent and Rates\",\n            \"low\": \"7100\",\n            \"high\": \"7199\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Heat, Light and Power\",\n            \"low\": \"7200\",\n            \"high\": \"7299\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Motor Expenses\",\n            \"low\": \"7300\",\n            \"high\": \"7399\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Travelling and Entertainment\",\n            \"low\": \"7400\",\n            \"high\": \"7499\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Printing and Stationery\",\n            \"low\": \"7500\",\n            \"high\": \"7599\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Professional Fees\",\n            \"low\": \"7600\",\n            \"high\": \"7699\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Equipment Hire and Rental\",\n            \"low\": \"7700\",\n            \"high\": \"7799\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Maintenance\",\n            \"low\": \"7800\",\n            \"high\": \"7899\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Bank Charges and Interest\",\n            \"low\": \"7900\",\n            \"high\": \"7999\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Depreciation\",\n            \"low\": \"8000\",\n            \"high\": \"8099\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Bad Debts\",\n            \"low\": \"8100\",\n            \"high\": \"8199\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"General Expenses\",\n            \"low\": \"8200\",\n            \"high\": \"8299\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Suspense & Mispostings\",\n            \"low\": \"9998\",\n            \"high\": \"9999\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Property\",\n            \"low\": \"0010\",\n            \"high\": \"0019\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Plant and Machinery\",\n            \"low\": \"0020\",\n            \"high\": \"0029\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Office Equipment\",\n            \"low\": \"0030\",\n            \"high\": \"0039\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Furniture and Fixtures\",\n            \"low\": \"0040\",\n            \"high\": \"0049\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Motor Vehicles\",\n            \"low\": \"0050\",\n            \"high\": \"0059\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Stock\",\n            \"low\": \"1000\",\n            \"high\": \"1099\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Debtors\",\n            \"low\": \"1100\",\n            \"high\": \"1199\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Deposits and Cash\",\n            \"low\": \"1210\",\n            \"high\": \"1239\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Credit Card (Debtors)\",\n            \"low\": \"1250\",\n            \"high\": \"1250\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Creditors : Short Term\",\n            \"low\": \"2100\",\n            \"high\": \"2199\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Taxation\",\n            \"low\": \"2210\",\n            \"high\": \"2219\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Wages\",\n            \"low\": \"2220\",\n            \"high\": \"2299\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Credit Card (Creditors)\",\n            \"low\": \"1240\",\n            \"high\": \"1240\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Creditors : Long Term\",\n            \"low\": \"2300\",\n            \"high\": \"2399\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Share Capital\",\n            \"low\": \"3000\",\n            \"high\": \"3099\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Reserves\",\n            \"low\": \"3100\",\n            \"high\": \"3299\"\n        },\n        {\n            \"categoryTitle\": \"Sales\",\n            \"name\": \"Taxation\",\n            \"low\": \"9001\",\n            \"high\": \"9001\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Product Sales\",\n            \"low\": \"4000\",\n            \"high\": \"4099\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Export Sales\",\n            \"low\": \"4100\",\n            \"high\": \"4199\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Sales of Assets\",\n            \"low\": \"4200\",\n            \"high\": \"4299\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Credit Charges (Late Payments)\",\n            \"low\": \"4400\",\n            \"high\": \"4499\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Other Sales\",\n            \"low\": \"4900\",\n            \"high\": \"4999\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Purchases\",\n            \"low\": \"5000\",\n            \"high\": \"5099\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Purchase Charges\",\n            \"low\": \"5100\",\n            \"high\": \"5199\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Stock\",\n            \"low\": \"5200\",\n            \"high\": \"5299\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Labour\",\n            \"low\": \"6000\",\n            \"high\": \"6099\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Commissions\",\n            \"low\": \"6100\",\n            \"high\": \"6199\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Sales Promotion\",\n            \"low\": \"6200\",\n            \"high\": \"6299\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Miscellaneous Expenses\",\n            \"low\": \"6900\",\n            \"high\": \"6999\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Gross Wages\",\n            \"low\": \"7000\",\n            \"high\": \"7099\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Rent and Rates\",\n            \"low\": \"7100\",\n            \"high\": \"7199\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Heat, Light and Power\",\n            \"low\": \"7200\",\n            \"high\": \"7299\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Motor Expenses\",\n            \"low\": \"7300\",\n            \"high\": \"7399\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Travelling and Entertainment\",\n            \"low\": \"7400\",\n            \"high\": \"7499\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Printing and Stationery\",\n            \"low\": \"7500\",\n            \"high\": \"7599\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Professional Fees\",\n            \"low\": \"7600\",\n            \"high\": \"7699\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Equipment Hire and Rental\",\n            \"low\": \"7700\",\n            \"high\": \"7799\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Maintenance\",\n            \"low\": \"7800\",\n            \"high\": \"7899\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Bank Charges and Interest\",\n            \"low\": \"7900\",\n            \"high\": \"7999\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Depreciation\",\n            \"low\": \"8000\",\n            \"high\": \"8099\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Bad Debts\",\n            \"low\": \"8100\",\n            \"high\": \"8199\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"General Expenses\",\n            \"low\": \"8200\",\n            \"high\": \"8299\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Suspense & Mispostings\",\n            \"low\": \"9998\",\n            \"high\": \"9999\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Property\",\n            \"low\": \"0010\",\n            \"high\": \"0019\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Plant and Machinery\",\n            \"low\": \"0020\",\n            \"high\": \"0029\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Office Equipment\",\n            \"low\": \"0030\",\n            \"high\": \"0039\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Furniture and Fixtures\",\n            \"low\": \"0040\",\n            \"high\": \"0049\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Motor Vehicles\",\n            \"low\": \"0050\",\n            \"high\": \"0059\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Stock\",\n            \"low\": \"1000\",\n            \"high\": \"1099\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Debtors\",\n            \"low\": \"1100\",\n            \"high\": \"1199\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Deposits and Cash\",\n            \"low\": \"1210\",\n            \"high\": \"1239\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Credit Card (Debtors)\",\n            \"low\": \"1250\",\n            \"high\": \"1250\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Creditors : Short Term\",\n            \"low\": \"2100\",\n            \"high\": \"2199\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Taxation\",\n            \"low\": \"2210\",\n            \"high\": \"2219\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Wages\",\n            \"low\": \"2220\",\n            \"high\": \"2299\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Credit Card (Creditors)\",\n            \"low\": \"1240\",\n            \"high\": \"1240\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Creditors : Long Term\",\n            \"low\": \"2300\",\n            \"high\": \"2399\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Share Capital\",\n            \"low\": \"3000\",\n            \"high\": \"3099\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Reserves\",\n            \"low\": \"3100\",\n            \"high\": \"3299\"\n        },\n        {\n            \"categoryTitle\": \"Purchases\",\n            \"name\": \"Taxation\",\n            \"low\": \"9001\",\n            \"high\": \"9001\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Product Sales\",\n            \"low\": \"4000\",\n            \"high\": \"4099\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Export Sales\",\n            \"low\": \"4100\",\n            \"high\": \"4199\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Sales of Assets\",\n            \"low\": \"4200\",\n            \"high\": \"4299\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Credit Charges (Late Payments)\",\n            \"low\": \"4400\",\n            \"high\": \"4499\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Other Sales\",\n            \"low\": \"4900\",\n            \"high\": \"4999\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Purchases\",\n            \"low\": \"5000\",\n            \"high\": \"5099\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Purchase Charges\",\n            \"low\": \"5100\",\n            \"high\": \"5199\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Stock\",\n            \"low\": \"5200\",\n            \"high\": \"5299\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Labour\",\n            \"low\": \"6000\",\n            \"high\": \"6099\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Commissions\",\n            \"low\": \"6100\",\n            \"high\": \"6199\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Sales Promotion\",\n            \"low\": \"6200\",\n            \"high\": \"6299\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Miscellaneous Expenses\",\n            \"low\": \"6900\",\n            \"high\": \"6999\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Gross Wages\",\n            \"low\": \"7000\",\n            \"high\": \"7099\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Rent and Rates\",\n            \"low\": \"7100\",\n            \"high\": \"7199\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Heat, Light and Power\",\n            \"low\": \"7200\",\n            \"high\": \"7299\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Motor Expenses\",\n            \"low\": \"7300\",\n            \"high\": \"7399\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Travelling and Entertainment\",\n            \"low\": \"7400\",\n            \"high\": \"7499\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Printing and Stationery\",\n            \"low\": \"7500\",\n            \"high\": \"7599\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Professional Fees\",\n            \"low\": \"7600\",\n            \"high\": \"7699\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Equipment Hire and Rental\",\n            \"low\": \"7700\",\n            \"high\": \"7799\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Maintenance\",\n            \"low\": \"7800\",\n            \"high\": \"7899\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Bank Charges and Interest\",\n            \"low\": \"7900\",\n            \"high\": \"7999\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Depreciation\",\n            \"low\": \"8000\",\n            \"high\": \"8099\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Bad Debts\",\n            \"low\": \"8100\",\n            \"high\": \"8199\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"General Expenses\",\n            \"low\": \"8200\",\n            \"high\": \"8299\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Suspense & Mispostings\",\n            \"low\": \"9998\",\n            \"high\": \"9999\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Property\",\n            \"low\": \"0010\",\n            \"high\": \"0019\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Plant and Machinery\",\n            \"low\": \"0020\",\n            \"high\": \"0029\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Office Equipment\",\n            \"low\": \"0030\",\n            \"high\": \"0039\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Furniture and Fixtures\",\n            \"low\": \"0040\",\n            \"high\": \"0049\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Motor Vehicles\",\n            \"low\": \"0050\",\n            \"high\": \"0059\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Stock\",\n            \"low\": \"1000\",\n            \"high\": \"1099\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Debtors\",\n            \"low\": \"1100\",\n            \"high\": \"1199\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Deposits and Cash\",\n            \"low\": \"1210\",\n            \"high\": \"1239\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Credit Card (Debtors)\",\n            \"low\": \"1250\",\n            \"high\": \"1250\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Creditors : Short Term\",\n            \"low\": \"2100\",\n            \"high\": \"2199\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Taxation\",\n            \"low\": \"2210\",\n            \"high\": \"2219\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Wages\",\n            \"low\": \"2220\",\n            \"high\": \"2299\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Credit Card (Creditors)\",\n            \"low\": \"1240\",\n            \"high\": \"1240\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Creditors : Long Term\",\n            \"low\": \"2300\",\n            \"high\": \"2399\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Share Capital\",\n            \"low\": \"3000\",\n            \"high\": \"3099\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Reserves\",\n            \"low\": \"3100\",\n            \"high\": \"3299\"\n        },\n        {\n            \"categoryTitle\": \"Direct Expenses\",\n            \"name\": \"Taxation\",\n            \"low\": \"9001\",\n            \"high\": \"9001\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Product Sales\",\n            \"low\": \"4000\",\n            \"high\": \"4099\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Export Sales\",\n            \"low\": \"4100\",\n            \"high\": \"4199\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Sales of Assets\",\n            \"low\": \"4200\",\n            \"high\": \"4299\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Credit Charges (Late Payments)\",\n            \"low\": \"4400\",\n            \"high\": \"4499\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Other Sales\",\n            \"low\": \"4900\",\n            \"high\": \"4999\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Purchases\",\n            \"low\": \"5000\",\n            \"high\": \"5099\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Purchase Charges\",\n            \"low\": \"5100\",\n            \"high\": \"5199\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Stock\",\n            \"low\": \"5200\",\n            \"high\": \"5299\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Labour\",\n            \"low\": \"6000\",\n            \"high\": \"6099\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Commissions\",\n            \"low\": \"6100\",\n            \"high\": \"6199\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Sales Promotion\",\n            \"low\": \"6200\",\n            \"high\": \"6299\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Miscellaneous Expenses\",\n            \"low\": \"6900\",\n            \"high\": \"6999\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Gross Wages\",\n            \"low\": \"7000\",\n            \"high\": \"7099\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Rent and Rates\",\n            \"low\": \"7100\",\n            \"high\": \"7199\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Heat, Light and Power\",\n            \"low\": \"7200\",\n            \"high\": \"7299\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Motor Expenses\",\n            \"low\": \"7300\",\n            \"high\": \"7399\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Travelling and Entertainment\",\n            \"low\": \"7400\",\n            \"high\": \"7499\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Printing and Stationery\",\n            \"low\": \"7500\",\n            \"high\": \"7599\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Professional Fees\",\n            \"low\": \"7600\",\n            \"high\": \"7699\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Equipment Hire and Rental\",\n            \"low\": \"7700\",\n            \"high\": \"7799\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Maintenance\",\n            \"low\": \"7800\",\n            \"high\": \"7899\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Bank Charges and Interest\",\n            \"low\": \"7900\",\n            \"high\": \"7999\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Depreciation\",\n            \"low\": \"8000\",\n            \"high\": \"8099\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Bad Debts\",\n            \"low\": \"8100\",\n            \"high\": \"8199\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"General Expenses\",\n            \"low\": \"8200\",\n            \"high\": \"8299\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Suspense & Mispostings\",\n            \"low\": \"9998\",\n            \"high\": \"9999\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Property\",\n            \"low\": \"0010\",\n            \"high\": \"0019\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Plant and Machinery\",\n            \"low\": \"0020\",\n            \"high\": \"0029\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Office Equipment\",\n            \"low\": \"0030\",\n            \"high\": \"0039\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Furniture and Fixtures\",\n            \"low\": \"0040\",\n            \"high\": \"0049\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Motor Vehicles\",\n            \"low\": \"0050\",\n            \"high\": \"0059\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Stock\",\n            \"low\": \"1000\",\n            \"high\": \"1099\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Debtors\",\n            \"low\": \"1100\",\n            \"high\": \"1199\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Deposits and Cash\",\n            \"low\": \"1210\",\n            \"high\": \"1239\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Credit Card (Debtors)\",\n            \"low\": \"1250\",\n            \"high\": \"1250\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Creditors : Short Term\",\n            \"low\": \"2100\",\n            \"high\": \"2199\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Taxation\",\n            \"low\": \"2210\",\n            \"high\": \"2219\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Wages\",\n            \"low\": \"2220\",\n            \"high\": \"2299\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Credit Card (Creditors)\",\n            \"low\": \"1240\",\n            \"high\": \"1240\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Creditors : Long Term\",\n            \"low\": \"2300\",\n            \"high\": \"2399\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Share Capital\",\n            \"low\": \"3000\",\n            \"high\": \"3099\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Reserves\",\n            \"low\": \"3100\",\n            \"high\": \"3299\"\n        },\n        {\n            \"categoryTitle\": \"Overheads\",\n            \"name\": \"Taxation\",\n            \"low\": \"9001\",\n            \"high\": \"9001\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Product Sales\",\n            \"low\": \"4000\",\n            \"high\": \"4099\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Export Sales\",\n            \"low\": \"4100\",\n            \"high\": \"4199\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Sales of Assets\",\n            \"low\": \"4200\",\n            \"high\": \"4299\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Credit Charges (Late Payments)\",\n            \"low\": \"4400\",\n            \"high\": \"4499\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Other Sales\",\n            \"low\": \"4900\",\n            \"high\": \"4999\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Purchases\",\n            \"low\": \"5000\",\n            \"high\": \"5099\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Purchase Charges\",\n            \"low\": \"5100\",\n            \"high\": \"5199\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Stock\",\n            \"low\": \"5200\",\n            \"high\": \"5299\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Labour\",\n            \"low\": \"6000\",\n            \"high\": \"6099\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Commissions\",\n            \"low\": \"6100\",\n            \"high\": \"6199\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Sales Promotion\",\n            \"low\": \"6200\",\n            \"high\": \"6299\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Miscellaneous Expenses\",\n            \"low\": \"6900\",\n            \"high\": \"6999\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Gross Wages\",\n            \"low\": \"7000\",\n            \"high\": \"7099\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Rent and Rates\",\n            \"low\": \"7100\",\n            \"high\": \"7199\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Heat, Light and Power\",\n            \"low\": \"7200\",\n            \"high\": \"7299\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Motor Expenses\",\n            \"low\": \"7300\",\n            \"high\": \"7399\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Travelling and Entertainment\",\n            \"low\": \"7400\",\n            \"high\": \"7499\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Printing and Stationery\",\n            \"low\": \"7500\",\n            \"high\": \"7599\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Professional Fees\",\n            \"low\": \"7600\",\n            \"high\": \"7699\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Equipment Hire and Rental\",\n            \"low\": \"7700\",\n            \"high\": \"7799\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Maintenance\",\n            \"low\": \"7800\",\n            \"high\": \"7899\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Bank Charges and Interest\",\n            \"low\": \"7900\",\n            \"high\": \"7999\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Depreciation\",\n            \"low\": \"8000\",\n            \"high\": \"8099\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Bad Debts\",\n            \"low\": \"8100\",\n            \"high\": \"8199\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"General Expenses\",\n            \"low\": \"8200\",\n            \"high\": \"8299\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Suspense & Mispostings\",\n            \"low\": \"9998\",\n            \"high\": \"9999\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Property\",\n            \"low\": \"0010\",\n            \"high\": \"0019\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Plant and Machinery\",\n            \"low\": \"0020\",\n            \"high\": \"0029\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Office Equipment\",\n            \"low\": \"0030\",\n            \"high\": \"0039\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Furniture and Fixtures\",\n            \"low\": \"0040\",\n            \"high\": \"0049\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Motor Vehicles\",\n            \"low\": \"0050\",\n            \"high\": \"0059\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Stock\",\n            \"low\": \"1000\",\n            \"high\": \"1099\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Debtors\",\n            \"low\": \"1100\",\n            \"high\": \"1199\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Deposits and Cash\",\n            \"low\": \"1210\",\n            \"high\": \"1239\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Credit Card (Debtors)\",\n            \"low\": \"1250\",\n            \"high\": \"1250\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Creditors : Short Term\",\n            \"low\": \"2100\",\n            \"high\": \"2199\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Taxation\",\n            \"low\": \"2210\",\n            \"high\": \"2219\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Wages\",\n            \"low\": \"2220\",\n            \"high\": \"2299\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Credit Card (Creditors)\",\n            \"low\": \"1240\",\n            \"high\": \"1240\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Creditors : Long Term\",\n            \"low\": \"2300\",\n            \"high\": \"2399\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Share Capital\",\n            \"low\": \"3000\",\n            \"high\": \"3099\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Reserves\",\n            \"low\": \"3100\",\n            \"high\": \"3299\"\n        },\n        {\n            \"categoryTitle\": \"Fixed Assets\",\n            \"name\": \"Taxation\",\n            \"low\": \"9001\",\n            \"high\": \"9001\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Product Sales\",\n            \"low\": \"4000\",\n            \"high\": \"4099\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Export Sales\",\n            \"low\": \"4100\",\n            \"high\": \"4199\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Sales of Assets\",\n            \"low\": \"4200\",\n            \"high\": \"4299\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Credit Charges (Late Payments)\",\n            \"low\": \"4400\",\n            \"high\": \"4499\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Other Sales\",\n            \"low\": \"4900\",\n            \"high\": \"4999\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Purchases\",\n            \"low\": \"5000\",\n            \"high\": \"5099\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Purchase Charges\",\n            \"low\": \"5100\",\n            \"high\": \"5199\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Stock\",\n            \"low\": \"5200\",\n            \"high\": \"5299\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Labour\",\n            \"low\": \"6000\",\n            \"high\": \"6099\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Commissions\",\n            \"low\": \"6100\",\n            \"high\": \"6199\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Sales Promotion\",\n            \"low\": \"6200\",\n            \"high\": \"6299\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Miscellaneous Expenses\",\n            \"low\": \"6900\",\n            \"high\": \"6999\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Gross Wages\",\n            \"low\": \"7000\",\n            \"high\": \"7099\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Rent and Rates\",\n            \"low\": \"7100\",\n            \"high\": \"7199\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Heat, Light and Power\",\n            \"low\": \"7200\",\n            \"high\": \"7299\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Motor Expenses\",\n            \"low\": \"7300\",\n            \"high\": \"7399\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Travelling and Entertainment\",\n            \"low\": \"7400\",\n            \"high\": \"7499\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Printing and Stationery\",\n            \"low\": \"7500\",\n            \"high\": \"7599\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Professional Fees\",\n            \"low\": \"7600\",\n            \"high\": \"7699\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Equipment Hire and Rental\",\n            \"low\": \"7700\",\n            \"high\": \"7799\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Maintenance\",\n            \"low\": \"7800\",\n            \"high\": \"7899\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Bank Charges and Interest\",\n            \"low\": \"7900\",\n            \"high\": \"7999\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Depreciation\",\n            \"low\": \"8000\",\n            \"high\": \"8099\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Bad Debts\",\n            \"low\": \"8100\",\n            \"high\": \"8199\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"General Expenses\",\n            \"low\": \"8200\",\n            \"high\": \"8299\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Suspense & Mispostings\",\n            \"low\": \"9998\",\n            \"high\": \"9999\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Property\",\n            \"low\": \"0010\",\n            \"high\": \"0019\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Plant and Machinery\",\n            \"low\": \"0020\",\n            \"high\": \"0029\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Office Equipment\",\n            \"low\": \"0030\",\n            \"high\": \"0039\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Furniture and Fixtures\",\n            \"low\": \"0040\",\n            \"high\": \"0049\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Motor Vehicles\",\n            \"low\": \"0050\",\n            \"high\": \"0059\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Stock\",\n            \"low\": \"1000\",\n            \"high\": \"1099\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Debtors\",\n            \"low\": \"1100\",\n            \"high\": \"1199\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Deposits and Cash\",\n            \"low\": \"1210\",\n            \"high\": \"1239\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Credit Card (Debtors)\",\n            \"low\": \"1250\",\n            \"high\": \"1250\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Creditors : Short Term\",\n            \"low\": \"2100\",\n            \"high\": \"2199\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Taxation\",\n            \"low\": \"2210\",\n            \"high\": \"2219\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Wages\",\n            \"low\": \"2220\",\n            \"high\": \"2299\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Credit Card (Creditors)\",\n            \"low\": \"1240\",\n            \"high\": \"1240\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Creditors : Long Term\",\n            \"low\": \"2300\",\n            \"high\": \"2399\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Share Capital\",\n            \"low\": \"3000\",\n            \"high\": \"3099\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Reserves\",\n            \"low\": \"3100\",\n            \"high\": \"3299\"\n        },\n        {\n            \"categoryTitle\": \"Current Assets\",\n            \"name\": \"Taxation\",\n            \"low\": \"9001\",\n            \"high\": \"9001\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Product Sales\",\n            \"low\": \"4000\",\n            \"high\": \"4099\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Export Sales\",\n            \"low\": \"4100\",\n            \"high\": \"4199\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Sales of Assets\",\n            \"low\": \"4200\",\n            \"high\": \"4299\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Credit Charges (Late Payments)\",\n            \"low\": \"4400\",\n            \"high\": \"4499\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Other Sales\",\n            \"low\": \"4900\",\n            \"high\": \"4999\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Purchases\",\n            \"low\": \"5000\",\n            \"high\": \"5099\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Purchase Charges\",\n            \"low\": \"5100\",\n            \"high\": \"5199\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Stock\",\n            \"low\": \"5200\",\n            \"high\": \"5299\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Labour\",\n            \"low\": \"6000\",\n            \"high\": \"6099\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Commissions\",\n            \"low\": \"6100\",\n            \"high\": \"6199\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Sales Promotion\",\n            \"low\": \"6200\",\n            \"high\": \"6299\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Miscellaneous Expenses\",\n            \"low\": \"6900\",\n            \"high\": \"6999\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Gross Wages\",\n            \"low\": \"7000\",\n            \"high\": \"7099\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Rent and Rates\",\n            \"low\": \"7100\",\n            \"high\": \"7199\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Heat, Light and Power\",\n            \"low\": \"7200\",\n            \"high\": \"7299\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Motor Expenses\",\n            \"low\": \"7300\",\n            \"high\": \"7399\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Travelling and Entertainment\",\n            \"low\": \"7400\",\n            \"high\": \"7499\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Printing and Stationery\",\n            \"low\": \"7500\",\n            \"high\": \"7599\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Professional Fees\",\n            \"low\": \"7600\",\n            \"high\": \"7699\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Equipment Hire and Rental\",\n            \"low\": \"7700\",\n            \"high\": \"7799\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Maintenance\",\n            \"low\": \"7800\",\n            \"high\": \"7899\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Bank Charges and Interest\",\n            \"low\": \"7900\",\n            \"high\": \"7999\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Depreciation\",\n            \"low\": \"8000\",\n            \"high\": \"8099\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Bad Debts\",\n            \"low\": \"8100\",\n            \"high\": \"8199\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"General Expenses\",\n            \"low\": \"8200\",\n            \"high\": \"8299\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Suspense & Mispostings\",\n            \"low\": \"9998\",\n            \"high\": \"9999\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Property\",\n            \"low\": \"0010\",\n            \"high\": \"0019\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Plant and Machinery\",\n            \"low\": \"0020\",\n            \"high\": \"0029\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Office Equipment\",\n            \"low\": \"0030\",\n            \"high\": \"0039\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Furniture and Fixtures\",\n            \"low\": \"0040\",\n            \"high\": \"0049\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Motor Vehicles\",\n            \"low\": \"0050\",\n            \"high\": \"0059\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Stock\",\n            \"low\": \"1000\",\n            \"high\": \"1099\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Debtors\",\n            \"low\": \"1100\",\n            \"high\": \"1199\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Deposits and Cash\",\n            \"low\": \"1210\",\n            \"high\": \"1239\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Credit Card (Debtors)\",\n            \"low\": \"1250\",\n            \"high\": \"1250\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Creditors : Short Term\",\n            \"low\": \"2100\",\n            \"high\": \"2199\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Taxation\",\n            \"low\": \"2210\",\n            \"high\": \"2219\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Wages\",\n            \"low\": \"2220\",\n            \"high\": \"2299\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Credit Card (Creditors)\",\n            \"low\": \"1240\",\n            \"high\": \"1240\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Creditors : Long Term\",\n            \"low\": \"2300\",\n            \"high\": \"2399\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Share Capital\",\n            \"low\": \"3000\",\n            \"high\": \"3099\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Reserves\",\n            \"low\": \"3100\",\n            \"high\": \"3299\"\n        },\n        {\n            \"categoryTitle\": \"Current Liabilities\",\n            \"name\": \"Taxation\",\n            \"low\": \"9001\",\n            \"high\": \"9001\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Product Sales\",\n            \"low\": \"4000\",\n            \"high\": \"4099\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Export Sales\",\n            \"low\": \"4100\",\n            \"high\": \"4199\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Sales of Assets\",\n            \"low\": \"4200\",\n            \"high\": \"4299\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Credit Charges (Late Payments)\",\n            \"low\": \"4400\",\n            \"high\": \"4499\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Other Sales\",\n            \"low\": \"4900\",\n            \"high\": \"4999\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Purchases\",\n            \"low\": \"5000\",\n            \"high\": \"5099\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Purchase Charges\",\n            \"low\": \"5100\",\n            \"high\": \"5199\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Stock\",\n            \"low\": \"5200\",\n            \"high\": \"5299\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Labour\",\n            \"low\": \"6000\",\n            \"high\": \"6099\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Commissions\",\n            \"low\": \"6100\",\n            \"high\": \"6199\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Sales Promotion\",\n            \"low\": \"6200\",\n            \"high\": \"6299\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Miscellaneous Expenses\",\n            \"low\": \"6900\",\n            \"high\": \"6999\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Gross Wages\",\n            \"low\": \"7000\",\n            \"high\": \"7099\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Rent and Rates\",\n            \"low\": \"7100\",\n            \"high\": \"7199\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Heat, Light and Power\",\n            \"low\": \"7200\",\n            \"high\": \"7299\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Motor Expenses\",\n            \"low\": \"7300\",\n            \"high\": \"7399\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Travelling and Entertainment\",\n            \"low\": \"7400\",\n            \"high\": \"7499\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Printing and Stationery\",\n            \"low\": \"7500\",\n            \"high\": \"7599\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Professional Fees\",\n            \"low\": \"7600\",\n            \"high\": \"7699\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Equipment Hire and Rental\",\n            \"low\": \"7700\",\n            \"high\": \"7799\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Maintenance\",\n            \"low\": \"7800\",\n            \"high\": \"7899\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Bank Charges and Interest\",\n            \"low\": \"7900\",\n            \"high\": \"7999\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Depreciation\",\n            \"low\": \"8000\",\n            \"high\": \"8099\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Bad Debts\",\n            \"low\": \"8100\",\n            \"high\": \"8199\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"General Expenses\",\n            \"low\": \"8200\",\n            \"high\": \"8299\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Suspense & Mispostings\",\n            \"low\": \"9998\",\n            \"high\": \"9999\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Property\",\n            \"low\": \"0010\",\n            \"high\": \"0019\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Plant and Machinery\",\n            \"low\": \"0020\",\n            \"high\": \"0029\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Office Equipment\",\n            \"low\": \"0030\",\n            \"high\": \"0039\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Furniture and Fixtures\",\n            \"low\": \"0040\",\n            \"high\": \"0049\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Motor Vehicles\",\n            \"low\": \"0050\",\n            \"high\": \"0059\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Stock\",\n            \"low\": \"1000\",\n            \"high\": \"1099\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Debtors\",\n            \"low\": \"1100\",\n            \"high\": \"1199\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Deposits and Cash\",\n            \"low\": \"1210\",\n            \"high\": \"1239\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Credit Card (Debtors)\",\n            \"low\": \"1250\",\n            \"high\": \"1250\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Creditors : Short Term\",\n            \"low\": \"2100\",\n            \"high\": \"2199\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Taxation\",\n            \"low\": \"2210\",\n            \"high\": \"2219\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Wages\",\n            \"low\": \"2220\",\n            \"high\": \"2299\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Credit Card (Creditors)\",\n            \"low\": \"1240\",\n            \"high\": \"1240\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Creditors : Long Term\",\n            \"low\": \"2300\",\n            \"high\": \"2399\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Share Capital\",\n            \"low\": \"3000\",\n            \"high\": \"3099\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Reserves\",\n            \"low\": \"3100\",\n            \"high\": \"3299\"\n        },\n        {\n            \"categoryTitle\": \"Long Term Liabilities\",\n            \"name\": \"Taxation\",\n            \"low\": \"9001\",\n            \"high\": \"9001\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Product Sales\",\n            \"low\": \"4000\",\n            \"high\": \"4099\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Export Sales\",\n            \"low\": \"4100\",\n            \"high\": \"4199\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Sales of Assets\",\n            \"low\": \"4200\",\n            \"high\": \"4299\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Credit Charges (Late Payments)\",\n            \"low\": \"4400\",\n            \"high\": \"4499\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Other Sales\",\n            \"low\": \"4900\",\n            \"high\": \"4999\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Purchases\",\n            \"low\": \"5000\",\n            \"high\": \"5099\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Purchase Charges\",\n            \"low\": \"5100\",\n            \"high\": \"5199\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Stock\",\n            \"low\": \"5200\",\n            \"high\": \"5299\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Labour\",\n            \"low\": \"6000\",\n            \"high\": \"6099\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Commissions\",\n            \"low\": \"6100\",\n            \"high\": \"6199\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Sales Promotion\",\n            \"low\": \"6200\",\n            \"high\": \"6299\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Miscellaneous Expenses\",\n            \"low\": \"6900\",\n            \"high\": \"6999\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Gross Wages\",\n            \"low\": \"7000\",\n            \"high\": \"7099\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Rent and Rates\",\n            \"low\": \"7100\",\n            \"high\": \"7199\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Heat, Light and Power\",\n            \"low\": \"7200\",\n            \"high\": \"7299\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Motor Expenses\",\n            \"low\": \"7300\",\n            \"high\": \"7399\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Travelling and Entertainment\",\n            \"low\": \"7400\",\n            \"high\": \"7499\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Printing and Stationery\",\n            \"low\": \"7500\",\n            \"high\": \"7599\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Professional Fees\",\n            \"low\": \"7600\",\n            \"high\": \"7699\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Equipment Hire and Rental\",\n            \"low\": \"7700\",\n            \"high\": \"7799\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Maintenance\",\n            \"low\": \"7800\",\n            \"high\": \"7899\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Bank Charges and Interest\",\n            \"low\": \"7900\",\n            \"high\": \"7999\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Depreciation\",\n            \"low\": \"8000\",\n            \"high\": \"8099\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Bad Debts\",\n            \"low\": \"8100\",\n            \"high\": \"8199\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"General Expenses\",\n            \"low\": \"8200\",\n            \"high\": \"8299\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Suspense & Mispostings\",\n            \"low\": \"9998\",\n            \"high\": \"9999\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Property\",\n            \"low\": \"0010\",\n            \"high\": \"0019\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Plant and Machinery\",\n            \"low\": \"0020\",\n            \"high\": \"0029\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Office Equipment\",\n            \"low\": \"0030\",\n            \"high\": \"0039\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Furniture and Fixtures\",\n            \"low\": \"0040\",\n            \"high\": \"0049\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Motor Vehicles\",\n            \"low\": \"0050\",\n            \"high\": \"0059\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Stock\",\n            \"low\": \"1000\",\n            \"high\": \"1099\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Debtors\",\n            \"low\": \"1100\",\n            \"high\": \"1199\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Deposits and Cash\",\n            \"low\": \"1210\",\n            \"high\": \"1239\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Credit Card (Debtors)\",\n            \"low\": \"1250\",\n            \"high\": \"1250\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Creditors : Short Term\",\n            \"low\": \"2100\",\n            \"high\": \"2199\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Taxation\",\n            \"low\": \"2210\",\n            \"high\": \"2219\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Wages\",\n            \"low\": \"2220\",\n            \"high\": \"2299\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Credit Card (Creditors)\",\n            \"low\": \"1240\",\n            \"high\": \"1240\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Creditors : Long Term\",\n            \"low\": \"2300\",\n            \"high\": \"2399\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Share Capital\",\n            \"low\": \"3000\",\n            \"high\": \"3099\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Reserves\",\n            \"low\": \"3100\",\n            \"high\": \"3299\"\n        },\n        {\n            \"categoryTitle\": \"Capital & Reserves\",\n            \"name\": \"Taxation\",\n            \"low\": \"9001\",\n            \"high\": \"9001\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Product Sales\",\n            \"low\": \"4000\",\n            \"high\": \"4099\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Export Sales\",\n            \"low\": \"4100\",\n            \"high\": \"4199\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Sales of Assets\",\n            \"low\": \"4200\",\n            \"high\": \"4299\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Credit Charges (Late Payments)\",\n            \"low\": \"4400\",\n            \"high\": \"4499\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Other Sales\",\n            \"low\": \"4900\",\n            \"high\": \"4999\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Purchases\",\n            \"low\": \"5000\",\n            \"high\": \"5099\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Purchase Charges\",\n            \"low\": \"5100\",\n            \"high\": \"5199\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Stock\",\n            \"low\": \"5200\",\n            \"high\": \"5299\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Labour\",\n            \"low\": \"6000\",\n            \"high\": \"6099\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Commissions\",\n            \"low\": \"6100\",\n            \"high\": \"6199\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Sales Promotion\",\n            \"low\": \"6200\",\n            \"high\": \"6299\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Miscellaneous Expenses\",\n            \"low\": \"6900\",\n            \"high\": \"6999\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Gross Wages\",\n            \"low\": \"7000\",\n            \"high\": \"7099\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Rent and Rates\",\n            \"low\": \"7100\",\n            \"high\": \"7199\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Heat, Light and Power\",\n            \"low\": \"7200\",\n            \"high\": \"7299\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Motor Expenses\",\n            \"low\": \"7300\",\n            \"high\": \"7399\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Travelling and Entertainment\",\n            \"low\": \"7400\",\n            \"high\": \"7499\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Printing and Stationery\",\n            \"low\": \"7500\",\n            \"high\": \"7599\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Professional Fees\",\n            \"low\": \"7600\",\n            \"high\": \"7699\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Equipment Hire and Rental\",\n            \"low\": \"7700\",\n            \"high\": \"7799\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Maintenance\",\n            \"low\": \"7800\",\n            \"high\": \"7899\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Bank Charges and Interest\",\n            \"low\": \"7900\",\n            \"high\": \"7999\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Depreciation\",\n            \"low\": \"8000\",\n            \"high\": \"8099\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Bad Debts\",\n            \"low\": \"8100\",\n            \"high\": \"8199\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"General Expenses\",\n            \"low\": \"8200\",\n            \"high\": \"8299\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Suspense & Mispostings\",\n            \"low\": \"9998\",\n            \"high\": \"9999\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Property\",\n            \"low\": \"0010\",\n            \"high\": \"0019\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Plant and Machinery\",\n            \"low\": \"0020\",\n            \"high\": \"0029\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Office Equipment\",\n            \"low\": \"0030\",\n            \"high\": \"0039\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Furniture and Fixtures\",\n            \"low\": \"0040\",\n            \"high\": \"0049\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Motor Vehicles\",\n            \"low\": \"0050\",\n            \"high\": \"0059\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Stock\",\n            \"low\": \"1000\",\n            \"high\": \"1099\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Debtors\",\n            \"low\": \"1100\",\n            \"high\": \"1199\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Deposits and Cash\",\n            \"low\": \"1210\",\n            \"high\": \"1239\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Credit Card (Debtors)\",\n            \"low\": \"1250\",\n            \"high\": \"1250\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Creditors : Short Term\",\n            \"low\": \"2100\",\n            \"high\": \"2199\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Taxation\",\n            \"low\": \"2210\",\n            \"high\": \"2219\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Wages\",\n            \"low\": \"2220\",\n            \"high\": \"2299\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Credit Card (Creditors)\",\n            \"low\": \"1240\",\n            \"high\": \"1240\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Bank Account\",\n            \"low\": \"1200\",\n            \"high\": \"1209\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"VAT Liability\",\n            \"low\": \"2200\",\n            \"high\": \"2209\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Creditors : Long Term\",\n            \"low\": \"2300\",\n            \"high\": \"2399\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Share Capital\",\n            \"low\": \"3000\",\n            \"high\": \"3099\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Reserves\",\n            \"low\": \"3100\",\n            \"high\": \"3299\"\n        },\n        {\n            \"categoryTitle\": \"Taxation\",\n            \"name\": \"Taxation\",\n            \"low\": \"9001\",\n            \"high\": \"9001\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"0d043418-0589-44d3-988f-84662a378c4f"},{"name":"Read Trial Balance","id":"deb44b51-2acf-4f84-8127-1d24a7669680","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/trialBalance/{{date}}","description":"<h2 id=\"get-read-trial-balance\">Get Read Trial Balance</h2>\n<ul>\n<li><p>Description: Returns Trial Balance</p>\n</li>\n<li><p>Endpoint URL: <code>api/trialBalance/{{date}}</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Notes</p>\n</li>\n</ul>\n<p>Date is in the format mm-yyyy</p>\n<p>If you put a date before the financial year, it will get all the BF (Brought Forward) data and if you select a date after the financial year, it will get all the FUTURE data. Otherwise, it will get the data for the selected date. You can see the current financial month &amp; year via endpoint - api/company</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","trialBalance","{{date}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d8df1974-a2fd-4e1e-964c-015d1095383d","name":"Read Trial Balance","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/trialBalance/01-2024"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"no-cache"},{"key":"pragma","value":"no-cache"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"expires","value":"-1"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"date","value":"Wed, 15 Apr 2026 08:18:07 GMT"},{"key":"content-length","value":"3722"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"toPeriod\": \"Month 1, January 2024\",\n        \"totalDebit\": 217177.64,\n        \"totalCredit\": 217177.64,\n        \"nominals\": [\n            {\n                \"accountRef\": \"0020\",\n                \"name\": \"Plant and Machinery\",\n                \"debit\": 50000,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"0021\",\n                \"name\": \"Plant/Machinery Depreciation\",\n                \"debit\": 0,\n                \"credit\": 4000\n            },\n            {\n                \"accountRef\": \"0040\",\n                \"name\": \"Furniture and Fixtures\",\n                \"debit\": 16900,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"0041\",\n                \"name\": \"Furniture/Fixture Depreciation\",\n                \"debit\": 0,\n                \"credit\": 93\n            },\n            {\n                \"accountRef\": \"0050\",\n                \"name\": \"Motor Vehicles\",\n                \"debit\": 20300,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"0051\",\n                \"name\": \"Motor Vehicles Depreciation\",\n                \"debit\": 0,\n                \"credit\": 1334.48\n            },\n            {\n                \"accountRef\": \"1001\",\n                \"name\": \"Stock\",\n                \"debit\": 35000,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"1100\",\n                \"name\": \"Debtors Control Account\",\n                \"debit\": 23130.92,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"1103\",\n                \"name\": \"Prepayments\",\n                \"debit\": 1350,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"1200\",\n                \"name\": \"Bank Current Account\",\n                \"debit\": 0,\n                \"credit\": 13374.76\n            },\n            {\n                \"accountRef\": \"1210\",\n                \"name\": \"Bank Deposit Account\",\n                \"debit\": 1510,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"1220\",\n                \"name\": \"Building Society Account\",\n                \"debit\": 2.5,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"1230\",\n                \"name\": \"Petty Cash\",\n                \"debit\": 297,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"1240\",\n                \"name\": \"Company Credit Card\",\n                \"debit\": 0,\n                \"credit\": 1056\n            },\n            {\n                \"accountRef\": \"2100\",\n                \"name\": \"Creditors Control Account\",\n                \"debit\": 0.01,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"2109\",\n                \"name\": \"Accruals\",\n                \"debit\": 0,\n                \"credit\": 50\n            },\n            {\n                \"accountRef\": \"2200\",\n                \"name\": \"Sales Tax Control Account\",\n                \"debit\": 0,\n                \"credit\": 6172.15\n            },\n            {\n                \"accountRef\": \"2201\",\n                \"name\": \"Purchase Tax Control Account\",\n                \"debit\": 1748.98,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"2210\",\n                \"name\": \"P.A.Y.E.\",\n                \"debit\": 0,\n                \"credit\": 3326.56\n            },\n            {\n                \"accountRef\": \"2211\",\n                \"name\": \"National Insurance\",\n                \"debit\": 0,\n                \"credit\": 1003.49\n            },\n            {\n                \"accountRef\": \"2230\",\n                \"name\": \"Pension Fund\",\n                \"debit\": 0,\n                \"credit\": 40\n            },\n            {\n                \"accountRef\": \"2300\",\n                \"name\": \"Loans\",\n                \"debit\": 0,\n                \"credit\": 7500\n            },\n            {\n                \"accountRef\": \"2310\",\n                \"name\": \"Hire Purchase\",\n                \"debit\": 0,\n                \"credit\": 7810\n            },\n            {\n                \"accountRef\": \"3000\",\n                \"name\": \"Ordinary Shares\",\n                \"debit\": 0,\n                \"credit\": 96332\n            },\n            {\n                \"accountRef\": \"4000\",\n                \"name\": \"Sales North\",\n                \"debit\": 0,\n                \"credit\": 39832.7\n            },\n            {\n                \"accountRef\": \"4009\",\n                \"name\": \"Discounts Allowed\",\n                \"debit\": 50,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"4905\",\n                \"name\": \"Distribution and Carriage\",\n                \"debit\": 0,\n                \"credit\": 200\n            },\n            {\n                \"accountRef\": \"5000\",\n                \"name\": \"Materials Purchased\",\n                \"debit\": 9713.9,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"5200\",\n                \"name\": \"Opening Stock\",\n                \"debit\": 40710,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"5201\",\n                \"name\": \"Closing Stock\",\n                \"debit\": 0,\n                \"credit\": 35000\n            },\n            {\n                \"accountRef\": \"6202\",\n                \"name\": \"Gifts and Samples\",\n                \"debit\": 100,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"7000\",\n                \"name\": \"Gross Wages\",\n                \"debit\": 8100,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"7006\",\n                \"name\": \"Employers N.I.\",\n                \"debit\": 831.81,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"7009\",\n                \"name\": \"Adjustments\",\n                \"debit\": 85,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"7010\",\n                \"name\": \"SSP Reclaimed\",\n                \"debit\": 10,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"7011\",\n                \"name\": \"SMP Reclaimed\",\n                \"debit\": 19.2,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"7100\",\n                \"name\": \"Rent\",\n                \"debit\": 6450,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"7200\",\n                \"name\": \"Electricity\",\n                \"debit\": 450,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"7304\",\n                \"name\": \"Miscellaneous Motor Expenses\",\n                \"debit\": 0.5,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"7350\",\n                \"name\": \"Scale Charges\",\n                \"debit\": 30.09,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"7500\",\n                \"name\": \"Printing\",\n                \"debit\": 2.5,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"7502\",\n                \"name\": \"Telephone\",\n                \"debit\": 50,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"7504\",\n                \"name\": \"Office Stationery\",\n                \"debit\": 55,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"7903\",\n                \"name\": \"Loan Interest Paid\",\n                \"debit\": 27.75,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"8003\",\n                \"name\": \"Vehicle Depreciation\",\n                \"debit\": 252.48,\n                \"credit\": 0\n            },\n            {\n                \"accountRef\": \"8222\",\n                \"name\": \"Bank Interest Received\",\n                \"debit\": 0,\n                \"credit\": 2.5\n            },\n            {\n                \"accountRef\": \"9999\",\n                \"name\": \"Mispostings Account\",\n                \"debit\": 0,\n                \"credit\": 50\n            }\n        ]\n    },\n    \"message\": null\n}"}],"_postman_id":"deb44b51-2acf-4f84-8127-1d24a7669680"}],"id":"681a0fb1-9bdb-4c3c-b95e-6b0bb03fae7b","_postman_id":"681a0fb1-9bdb-4c3c-b95e-6b0bb03fae7b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}},{"name":"Webhooks","item":[{"name":"Read All Webhooks","event":[{"listen":"test","script":{"id":"3c6d0ff2-2c28-466d-afbb-6d0333794ea8","exec":["tests[\"Read Customer Working\"+pm.response.text()] = responseBody .has(\"name\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"8a2bcd3f-999c-422d-a7ac-0aa4af6ead9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/Webhook","description":"<h2 id=\"read-all-webhooks\">Read All Webhooks</h2>\n<ul>\n<li><p>Description: Reads All Webhooks</p>\n</li>\n<li><p>Endpoint URL: <code>api/Webhook</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","Webhook"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4b2601af-9766-4e01-87ae-08c3d23c78cc","name":"Read All Webhooks","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/Webhook"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 05 Feb 2026 10:45:58 GMT"},{"key":"Content-Length","value":"568"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"active\": false,\n        \"createdDate\": \"2026-02-03T14:48:49.1325203+00:00\",\n        \"updatedDate\": \"2026-02-04T09:39:40.042878Z\",\n        \"sageFileName\": \"Stock\",\n        \"url\": \"https://webhook.site/dd3b296d-e1c8-415c-9700-5704647347ae2\",\n        \"authorisationHeader\": \"test\",\n        \"authorisationToken\": \"test\",\n        \"sageFileNameValue\": \"STOCK.DTA\"\n    },\n    {\n        \"id\": 2,\n        \"active\": true,\n        \"createdDate\": \"2026-02-05T10:45:21.7625095+00:00\",\n        \"updatedDate\": null,\n        \"sageFileName\": \"Customers\",\n        \"url\": \"https://webhook.site/53edf139-12f5-4cc5-93ed-cfd5c158eb4d\",\n        \"authorisationHeader\": null,\n        \"authorisationToken\": null,\n        \"sageFileNameValue\": \"SALES.DTA\"\n    }\n]"}],"_postman_id":"8a2bcd3f-999c-422d-a7ac-0aa4af6ead9c"},{"name":"Read Webhook","event":[{"listen":"test","script":{"id":"3c6d0ff2-2c28-466d-afbb-6d0333794ea8","exec":["tests[\"Read Customer Working\"+pm.response.text()] = responseBody .has(\"name\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"cce7a681-3972-4728-859b-10fb540db759","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/Webhook/{{id}}","description":"<h2 id=\"read-1-webhook\">Read 1 Webhook</h2>\n<ul>\n<li><p>Description: Reads 1 Webhook</p>\n</li>\n<li><p>Endpoint URL: <code>api/Webhook/{{id}}</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","Webhook","{{id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"07ef7964-fb7d-4eef-9a28-99b156c2f9e2","name":"Read 1 Webhook","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/Webhook/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 05 Feb 2026 10:42:10 GMT"},{"key":"Content-Length","value":"296"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"active\": false,\n    \"createdDate\": \"2026-02-03T14:48:49.1325203+00:00\",\n    \"updatedDate\": \"2026-02-04T09:39:40.042878Z\",\n    \"sageFileName\": \"Stock\",\n    \"url\": \"https://webhook.site/dd3b296d-e1c8-415c-9700-5704647347ae2\",\n    \"authorisationHeader\": \"test\",\n    \"authorisationToken\": \"test\",\n    \"sageFileNameValue\": \"STOCK.DTA\"\n}"}],"_postman_id":"cce7a681-3972-4728-859b-10fb540db759"},{"name":"Create Webhook","id":"e1490593-752e-44f8-88fa-029ff35cbb36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"sageFileName\": \"Customers\",\r\n    \"url\": \"https://webhook.site/53edf139-12f5-4cc5-93ed-cfd5c158eb4d\",\r\n    \"active\": true\r\n}"},"url":"{{url}}/api/Webhook","description":"<h2 id=\"post-create-webhook\">POST Create Webhook</h2>\n<ul>\n<li><p>Description: Creates a new webhook</p>\n</li>\n<li><p>Endpoint URL: <code>api/Webhook</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">sageFileName // Required, String\nurl // Required, String\nauthorisationHeader // Optional, String\nauthorisationToken // Optional, String\nactive // Optional, Bool (defaults to true)\n\n</code></pre>\n<p>Note:</p>\n<ul>\n<li>Authorisation fields are only required if destination url is password protected. If sending over authorisation fields, you need to populate both fields.</li>\n</ul>\n<h2 id=\"sage-file-names\">Sage File Names</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value                  File name\nCustomers              SALES.DTA\nSalesInvoices          INVOICE.DTA\nSalesInvoiceItems      INVITEM.DTA\nSuppliers              PURCHASE.DTA\nPurchaseOrders         PUORDER.DTA\nPurchaseOrderItems     PUOITEM.DTA\nTransactionHeaders     HEADER.DTA\nTransactionSplits      SPLITS.DTA\nTransactionUsages      USAGE.DTA\nSalesOrders            SAORDER.DTA\nSalesOrderItems        SAOITEM.DTA\nStock                  STOCK.DTA\nGoodsReceivedNotes     GN.DTA\nProjects               PROJECT.DTA\nStockTransactions      STKTRANS.DTA\nPrices                 PRICE.DTA\nGoodsDispatchedNotes   GN.DTA\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","Webhook"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"222a7408-227d-494c-b868-2664a7594034","name":"Create Webhook","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"sageFileName\": \"Customers\",\r\n    \"url\": \"https://webhook.site/53edf139-12f5-4cc5-93ed-cfd5c158eb4d\",\r\n    \"active\": true\r\n}"},"url":"{{url}}/api/Webhook"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 05 Feb 2026 10:45:21 GMT"},{"key":"Content-Length","value":"269"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2,\n    \"active\": true,\n    \"createdDate\": \"2026-02-05T10:45:21.7625095+00:00\",\n    \"updatedDate\": null,\n    \"sageFileName\": \"Customers\",\n    \"url\": \"https://webhook.site/53edf139-12f5-4cc5-93ed-cfd5c158eb4d\",\n    \"authorisationHeader\": null,\n    \"authorisationToken\": null,\n    \"sageFileNameValue\": \"SALES.DTA\"\n}"}],"_postman_id":"e1490593-752e-44f8-88fa-029ff35cbb36"},{"name":"Update Webhook","id":"eb4869b6-a9ec-4fb3-9a0d-dcd919732831","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"sageFileName\": \"Customers\",\r\n    \"url\": \"https://webhook.site/dd3b296d-e1c8-415c-9700-5704647347ae2\",\r\n    \"active\": true\r\n}"},"url":"{{url}}/api/Webhook/{{id}}","description":"<h2 id=\"patch-update-webhook\">PATCH Update Webhook</h2>\n<ul>\n<li><p>Description: Updates Existing Webhook</p>\n</li>\n<li><p>Endpoint URL: <code>api/Webhook{{id}}</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">sageFileName // Optional, String\nurl // Optional, String\nauthorisationHeader // Optional, String\nauthorisationToken // Optional, String\nactive // Optional, Bool\n\n</code></pre>\n<p>Note:</p>\n<ul>\n<li>Authorisation fields are only required if destination url is password protected. If sending over authorisation fields, you need to populate both fields.</li>\n</ul>\n<h2 id=\"sage-file-names\">Sage File Names</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value                  File name\nCustomers              SALES.DTA\nSalesInvoices          INVOICE.DTA\nSalesInvoiceItems      INVITEM.DTA\nSuppliers              PURCHASE.DTA\nPurchaseOrders         PUORDER.DTA\nPurchaseOrderItems     PUOITEM.DTA\nTransactionHeaders     HEADER.DTA\nTransactionSplits      SPLITS.DTA\nTransactionUsages      USAGE.DTA\nSalesOrders            SAORDER.DTA\nSalesOrderItems        SAOITEM.DTA\nStock                  STOCK.DTA\nGoodsReceivedNotes     GN.DTA\nProjects               PROJECT.DTA\nStockTransactions      STKTRANS.DTA\nPrices                 PRICE.DTA\nGoodsDispatchedNotes   GN.DTA\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","Webhook","{{id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"468cc48d-df08-41bb-924d-b5ba3d1ae4ab","name":"Update Webhook","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"sageFileName\": \"Customers\",\r\n    \"url\": \"https://webhook.site/dd3b296d-e1c8-415c-9700-5704647347ae2\",\r\n    \"active\": true\r\n}"},"url":"{{url}}/api/Webhook/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 05 Feb 2026 10:48:33 GMT"},{"key":"Content-Length","value":"296"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2,\n    \"active\": true,\n    \"createdDate\": \"2026-02-05T10:45:21.7625095+00:00\",\n    \"updatedDate\": \"2026-02-05T10:48:33.1416357Z\",\n    \"sageFileName\": \"Customers\",\n    \"url\": \"https://webhook.site/dd3b296d-e1c8-415c-9700-5704647347ae2\",\n    \"authorisationHeader\": null,\n    \"authorisationToken\": null,\n    \"sageFileNameValue\": \"SALES.DTA\"\n}"}],"_postman_id":"eb4869b6-a9ec-4fb3-9a0d-dcd919732831"},{"name":"Delete Webhook","id":"4d153b3f-ff9f-42b9-9d73-bc79d6fd5d73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{url}}/api/Webhook/{{id}}","description":"<h2 id=\"delete-webhook\">Delete Webhook</h2>\n<ul>\n<li><p>Description: Deletes webhook.</p>\n</li>\n<li><p>Endpoint URL: <code>api/Webhook/{id}</code></p>\n</li>\n<li><p>Method <code>DELETE</code></p>\n</li>\n<li><p>Params: ID</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","Webhook","{{id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"80b3af5e-ed78-4815-b985-3db50b77c8e7","name":"Delete Webhook","originalRequest":{"method":"DELETE","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/Webhook/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 05 Feb 2026 11:22:35 GMT"},{"key":"Content-Length","value":"29"}],"cookie":[],"responseTime":null,"body":"{\n    \"Message\": \"Webhook deleted\"\n}"}],"_postman_id":"4d153b3f-ff9f-42b9-9d73-bc79d6fd5d73"}],"id":"186d211b-8a57-4864-8397-d685fada2aa6","_postman_id":"186d211b-8a57-4864-8397-d685fada2aa6","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}},{"name":"Customers","item":[{"name":"Search Customer","event":[{"listen":"test","script":{"id":"1cbeaa89-93c6-4180-a94c-05429ae23b37","exec":["tests[\"Search Customer Working\"+pm.response.text()] = responseBody .has(\"name\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"c2f6a935-d909-49e6-814e-c8581dfe77d1","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"RECORD_MODIFY_DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"15/03/2026\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchSalesLedger","description":"<h2 id=\"search-customers\">Search Customers</h2>\n<ul>\n<li><p>Description: Searches for customers.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchSalesLedger</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n<p><strong>NOTES</strong>:</p>\n<ul>\n<li>Fields email4 to email6 are only available on V29 of Sage and upwards</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchSalesLedger"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"187c5697-e18e-418c-ae14-e9a06bb6ffe5","name":"Search Customer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"company","value":"{{company}}","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"RECORD_MODIFY_DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"01/01/2026\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchSalesLedger"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 12 Jan 2026 14:31:10 GMT"},{"key":"Content-Length","value":"1624"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"accountRef\": \"A1D001\",\n            \"name\": \"Hyperext\",\n            \"balance\": 3287.6,\n            \"currency\": \"1\",\n            \"contactName\": \"Betty Bruno\",\n            \"telephoneNumber\": \"01744 697929\",\n            \"address1\": \"Hyperext Ltd\",\n            \"address2\": \"Unity House\",\n            \"address3\": \"Westwood Park\",\n            \"address4\": \"Wigan\",\n            \"address5\": \"WN3 4HE\",\n            \"delName\": \"A1 Design Services\",\n            \"delAddress1\": \"67a Station Road\",\n            \"delAddress2\": \"\",\n            \"delAddress3\": \"Blackpool\",\n            \"delAddress4\": \"Lancashire\",\n            \"delAddress5\": \"BP12 7HT\",\n            \"accountOnHold\": false,\n            \"accountStatusText\": \"Open\",\n            \"averagePayDays\": 0,\n            \"creditLimit\": 1000,\n            \"terms\": \"30 days nett\",\n            \"bacsRef\": \"\",\n            \"iban\": \"\",\n            \"bicSwift\": \"\",\n            \"rollNumber\": \"\",\n            \"additionalRef1\": \"\",\n            \"additionalRef2\": \"\",\n            \"additionalRef3\": \"\",\n            \"paymentType\": 2,\n            \"paymentTypeName\": null,\n            \"turnoverYtd\": 7345.5399999999991,\n            \"priorYear\": 0,\n            \"vatRegNumber\": \"GB238 3839 38\",\n            \"eoriNumber\": \"\",\n            \"lastPaymentDate\": \"03/07/2024 00:00:00\",\n            \"lastInvDate\": \"03/07/2024 00:00:00\",\n            \"recordCreateDate\": \"27/04/2010 17:16:57\",\n            \"recordModifyDate\": \"08/01/2026 09:41:00\",\n            \"telephone2\": \"01742 876 235\",\n            \"fax\": \"01742 876 236\",\n            \"webAddress\": \"www.sage.co.uk\",\n            \"countryCode\": \"GB\",\n            \"email\": \"newbusinessadvice@sage.com\",\n            \"email2\": \"\",\n            \"email3\": \"\",\n            \"email4\": \"\",\n            \"email5\": \"\",\n            \"email6\": \"\",\n            \"defTaxCode\": \"T1\",\n            \"defNomCode\": \"4000\",\n            \"analysis1\": \"Trade\",\n            \"analysis2\": \"George\",\n            \"analysis3\": \"Lancashire\",\n            \"analysis4\": \"\",\n            \"analysis5\": \"\",\n            \"analysis6\": \"\",\n            \"deptNumber\": 0,\n            \"inactiveAccount\": 0,\n            \"settleDueDays\": 15,\n            \"paymentDueDays\": 30,\n            \"paymentDueFrom\": 0,\n            \"creditPosition\": \"Legal\",\n            \"incoTerms\": 0,\n            \"incoTermsText\": \"\",\n            \"discountRate\": 0,\n            \"discountType\": 0,\n            \"priceListRef\": \"TRADEA\",\n            \"tradeContact\": \"Malcolm Leverret\",\n            \"companyRegistrationNumber\": \"\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"c2f6a935-d909-49e6-814e-c8581dfe77d1"},{"name":"Read Customer","event":[{"listen":"test","script":{"id":"3c6d0ff2-2c28-466d-afbb-6d0333794ea8","exec":["tests[\"Read Customer Working\"+pm.response.text()] = responseBody .has(\"name\");"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"9e9646e3-87a9-4e08-8a42-fe184be12156","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/customer/{{customer}}","description":"<h2 id=\"read-1-customer\">Read 1 Customer</h2>\n<ul>\n<li><p>Description: Read 1 customers account. If you are wanting to search for more than 1 customer use endpoint - api/searchSalesLedger</p>\n</li>\n<li><p>Endpoint URL: <code>api/customer/{{customer}}</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","customer","{{customer}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9c72d068-5236-4eab-8fa7-a95028fe80cf","name":"Read Customer","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/customer/{{customer}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 05 Feb 2025 15:19:43 GMT"},{"key":"Content-Length","value":"1487"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"accountRef\": \"A1D001\",\n        \"name\": \"A1 Design Services\",\n        \"address1\": \"67a Station Road\",\n        \"address2\": \"\",\n        \"address3\": \"Blackpool\",\n        \"address4\": \"Lancashire\",\n        \"address5\": \"BP12 7HT\",\n        \"countryCode\": \"GB\",\n        \"contactName\": \"Ian Cairns\",\n        \"telephone\": \"01742 876 234\",\n        \"deliveryName\": \"A1 Design Services\",\n        \"deliveryAddress1\": \"67a Station Road\",\n        \"deliveryAddress2\": \"\",\n        \"deliveryAddress3\": \"Blackpool\",\n        \"deliveryAddress4\": \"Lancashire\",\n        \"deliveryAddress5\": \"BP12 7HT\",\n        \"email\": \"newbusinessadvice@sage.com\",\n        \"email2\": \"\",\n        \"email3\": \"\",\n        \"email4\": \"\",\n        \"email5\": \"\",\n        \"email6\": \"\",\n        \"eoriNumber\": \"\",\n        \"defNomCode\": \"4000\",\n        \"defNomCodeUseDefault\": false,\n        \"defTaxCode\": 1,\n        \"defTaxCodeUseDefault\": false,\n        \"terms\": \"30 days nett\",\n        \"termsAgreed\": true,\n        \"turnoverYtd\": 5220.54,\n        \"currency\": 1,\n        \"bankAccountName\": \"\",\n        \"bankSortCode\": \"\",\n        \"bankAccountNumber\": \"\",\n        \"bacsRef\": \"\",\n        \"iban\": \"\",\n        \"bicSwift\": \"\",\n        \"rollNumber\": \"\",\n        \"additionalRef1\": \"\",\n        \"additionalRef2\": \"\",\n        \"additionalRef3\": \"\",\n        \"paymentType\": 3,\n        \"sendInvoicesElectronically\": false,\n        \"sendLettersElectronically\": false,\n        \"analysis1\": \"Trade\",\n        \"analysis2\": \"George\",\n        \"analysis3\": \"Lancashire\",\n        \"analysis4\": \"\",\n        \"analysis5\": \"\",\n        \"analysis6\": \"\",\n        \"deptNumber\": 0,\n        \"paymentDueDays\": 30,\n        \"paymentDueFrom\": 0,\n        \"accountStatus\": 0,\n        \"inactiveAccount\": false,\n        \"onHold\": false,\n        \"creditLimit\": 1000,\n        \"balance\": 0,\n        \"vatNumber\": \"GB238 3839 38\",\n        \"memo\": \"\",\n        \"discountRate\": 0,\n        \"discountType\": 0,\n        \"www\": \"www.sage.co.uk\",\n        \"priceListRef\": \"TRADEA\",\n        \"tradeContact\": \"Malcolm Leverret\",\n        \"telephone2\": \"01742 876 235\",\n        \"fax\": \"01742 876 236\"\n    },\n    \"message\": null\n}"}],"_postman_id":"9e9646e3-87a9-4e08-8a42-fe184be12156"},{"name":"Create Customer","id":"f7dead09-791a-4f1b-ad57-9a10ae409f76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n        \"name\": \"Smokey BBQ Co\",\r\n        \"address1\": \"221 Main Street\",\r\n        \"address2\": \"Haydock\",\r\n        \"address3\": \"St HELENS\",\r\n        \"address4\": \"WA10 6RP\",\r\n        \"address5\": \"United Kingdom\",\r\n        \"countryCode\": \"GB\",\r\n        \"contactName\": \"Hyperext\",\r\n        \"telephone\": \"01744 697929\",\r\n        \"deliveryAddress1\": \"\",\r\n        \"deliveryAddress2\": \"\",\r\n        \"deliveryAddress3\": \"\",\r\n        \"deliveryAddress4\": \"\",\r\n        \"deliveryAddress5\": \"\",\r\n        \"email\": \"support@hyperext.com\",\r\n        \"defNomCode\": \"4000\",\r\n        \"defTaxCode\": 1,\r\n        \"terms\": \"\",\r\n        \"termsAgreed\": false,\r\n        \"currency\": 1,\r\n        \"paymentType\": 0,\r\n        \"sendInvoicesElectronically\": false,\r\n        \"sendLettersElectronically\": false,\r\n        \"analysis1\": \"\",\r\n        \"analysis2\": \"\",\r\n        \"analysis3\": \"\",\r\n        \"deptNumber\": 0,\r\n        \"paymentDueDays\": 0,\r\n        \"inactiveAccount\": false\r\n    }"},"url":"{{url}}/api/customer/","description":"<h2 id=\"post-create-customer\">POST Create Customer</h2>\n<ul>\n<li><p>Description: Creates a new customer record in Sage. Automatically generates unique accountRef in the form 'AAAA0000' returned in successful response</p>\n</li>\n<li><p>Endpoint URL: <code>api/customer</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">accountRef // optional, string, max 8 chars to override auto generation\nname // required, string, max 60 chars\ncontactName // optional, string, max 30 chars\ncustomerName // optional, string, max 30 chars\ntradeContact // optional, string, max 30 chars\ntelephone // optional, string, max 30 chars\naddress1 // optional, string, max 60 chars\naddress2 // optional, string, max 60 chars\naddress3 // optional, string, max 60 chars\naddress4 // optional, string, max 60 chars\naddress5 // optional, string, max 60 chars\ndeliveryAddress1 // optional, string, max 60 chars\ndeliveryAddress2 // optional, string, max 60 chars\ndeliveryAddress3 // optional, string, max 60 chars\ndeliveryAddress4 // optional, string, max 60 chars\ndeliveryAddress5 // optional, string, max 60 chars\ncountryCode // e.g GB max 2 chars, optional\ncreditLimit // optional, int\npriceListRef // optional, string, max 8 chars\ncurrency // Int max 1 chars, optional, use values from sage Settings &gt; Currencies\nemail // optional, string, max 255 chars\nemail2 // optional, string, max 255 chars\nemail3 // optional, string, max 255 chars\nemail4 // optional, string, max 255 chars\nemail5 //optional, string, max 255 chars\nemail6 // optional, string, max 255 chars\naccountStatus // optional,  int, max 2 digits\neoriNumber // optional, string, max 60 chars\ndefTaxCode // optional, int, max 2 digits\ndefNomCodeUseDefault // optional, bool \ndefNomCode // optional, string, max 8 chars\nterms // optional, string, max 30 chars\ntermsAgreed // optional, bool\nbankAccountName // optional, string, max 60 chars\nbankSortCode // optional, string, max 10 chars\nbankAccountNumber // optional, string, max 60 chars\nbacsRef // optional, string, max 60 chars\niban // optional, string, max 60 chars\nbicSwift // optional, string, max 60 chars\nrollNumber // optional, string, max 60 chars\naddtitionalRef1 // optional, string, max 60 chars\naddtitionalRef2 // optional, string, max 60 chars\naddtitionalRef3 // optional, string, max 60 chars\npaymentType // optional, int, max 2 chars\nsendInvoicesElectronically // optional, bool\nsendLettersElectronically // optional, bool\nanalysis1 // optional, string, max 30 chars\nanalysis2 // optional, string, max 30 chars\nanalysis3 // optional, string, max 30 chars\nanalysis4 // optional, string, max 30 chars\nanalysis5 // optional, string, max 30 chars\nanalysis6 // optional, string, max 30 chars\ndeptNumber // optional, int, max 2 chars\npaymentDueDays // optional, int, max 2 chars\npaymentDueFrom // optional, int, max 1 chars\ninactiveAccount // optional, bool\nvatNumber // optional, string, max 20 chars\naccountStatus // optional, int, max 2 chars\nonHold // optional, bool\ncreditPosition // optional, int, max 1 chars\ndiscountRate // optional, double, max 8 chars\ndiscountType // optional, byte, enum type, max 1 chars\nwww // optional, string, max 255 chars\n\n</code></pre>\n<p>Note:</p>\n<ul>\n<li>Fields email4 to email6 are only available on V29 of Sage and upwards</li>\n</ul>\n<h2 id=\"payment-due-from-status\">Payment Due From Status</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n0    Days After Invoice Date\n1    Days From The First Day Of The Following Month\n2    Days Before The Last Day Of The Following Month\n3    Days Of The Month\n4    Days From 1 Month After Invoice Date\n\n</code></pre>\n<h3 id=\"sales-discount-type\">Sales Discount Type</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Constant         Value            Description \nsdoNoDiscount       0         No Discount Applied \nsdoValueDiscount    1         Discount Applied by Invoice Value \nsdoQtyDiscountA     2         Discount Applied by Banding A \nsdoQtyDiscountB     3         Discount Applied by Banding B \nsdoQtyDiscountC     4         Discount Applied by Banding C \nsdoQtyDiscountD     5         Discount Applied by Banding D \nsdoQtyDiscountE     6         Discount Applied by Banding E\n\n</code></pre>\n<h2 id=\"credit-position-status\">Credit Position Status</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n0        Good\n1        Reminder\n2        Warning\n3        Legal\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","customer",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"61b0804f-42fb-4d6a-9a35-3dc0000bf350","name":"Create Customer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n        \"name\": \"Smokey BBQ Co\",\r\n        \"address1\": \"221 Main Street\",\r\n        \"address2\": \"Haydock\",\r\n        \"address3\": \"St HELENS\",\r\n        \"address4\": \"WA10 6RP\",\r\n        \"address5\": \"United Kingdom\",\r\n        \"countryCode\": \"GB\",\r\n        \"contactName\": \"Hyperext\",\r\n        \"telephone\": \"01744 697929\",\r\n        \"deliveryAddress1\": \"\",\r\n        \"deliveryAddress2\": \"\",\r\n        \"deliveryAddress3\": \"\",\r\n        \"deliveryAddress4\": \"\",\r\n        \"deliveryAddress5\": \"\",\r\n        \"email\": \"support@hyperext.com\",\r\n        \"defNomCode\": \"4000\",\r\n        \"defTaxCode\": 1,\r\n        \"terms\": \"\",\r\n        \"termsAgreed\": false,\r\n        \"currency\": 1,\r\n        \"paymentType\": 0,\r\n        \"sendInvoicesElectronically\": false,\r\n        \"sendLettersElectronically\": false,\r\n        \"analysis1\": \"\",\r\n        \"analysis2\": \"\",\r\n        \"analysis3\": \"\",\r\n        \"deptNumber\": 0,\r\n        \"paymentDueDays\": 0,\r\n        \"inactiveAccount\": false\r\n    }"},"url":"{{url}}/api/customer/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 12:55:03 GMT"},{"key":"Content-Length","value":"64"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": \"SMOK0001\",\n    \"message\": null\n}"}],"_postman_id":"f7dead09-791a-4f1b-ad57-9a10ae409f76"},{"name":"Update Customer","id":"3649a91e-6817-496c-9659-6dae38c8a044","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"SMOK0001\",\r\n    \"name\": \"Hyperext\",\r\n    \"address1\": \"Hyperext Ltd\",\r\n    \"address2\": \"Unity House\",\r\n    \"address3\": \"Westwood Park\",\r\n    \"address4\": \"Wigan\",\r\n    \"address5\": \"WN3 4HE\",\r\n    \"countryCode\": \"GB\",\r\n    \"contactName\": \"Betty Bruno\",\r\n    \"telephone\": \"01744 697929\"\r\n}"},"url":"{{url}}/api/customer/","description":"<h2 id=\"patch-update-customer\">PATCH Update Customer</h2>\n<ul>\n<li><p>Description: Updates an existing customer record.</p>\n</li>\n<li><p>Endpoint URL: <code>api/customer</code></p>\n</li>\n<li><p>Method: <code>PATCH</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">accountRef // String, required, max 8 chars\nname // String, optional, max 30 chars\ncontactName // String, optional, max 30 chars\ncustomerName // optional, string, max 30 chars\ntradeContact // optional, string, max 30 chars\ntelephone // String, optional, max 30 chars\naddress1 // String, optional, max 60 chars\naddress2 // String, optional, max 60 chars\naddress3 // String, optional, max 60 chars\naddress4 // String, optional, max 60 chars\naddress5 // String, optional, max 60 chars\ncountryCode // String, optional, max 2 chars\ndeliveryAddress1 // String, optional, max 60 chars\ndeliveryAddress2 // String, optional, max 60 chars\ndeliveryAddress3 // String, optional, max 60 chars\ndeliveryAddress4 // String, optional, max 60 chars\ndeliveryAddress5 // String, optional, max 60 chars\ncurrency // Int, optional, use values from sage Settings &gt; Currencies, max 1 chars\nemail // optional, string, max 255 chars\nemail2 // optional, string, max 255 chars\nemail3 // optional, string, max 255 chars\nemail4 // optional, string, max 255 chars\nemail5 //optional, string, max 255 chars\nemail6 // optional, string, max 255 chars\naccountStatus // optional,  int, max 2 digits\neoriNumber // optional, string, max 60 chars\ndefTaxCode // optional, int, max 2 digits\ndefNomCodeUseDefault // optional, bool \ndefNomCode // optional, string, max 8 chars\ndefTaxCodeUseDefault // optional, bool\nterms // optional, string, max 30 chars\ntermsAgreed // optional, bool\ncreditLimit // optional, int\npriceListRef // optional, string, max 8 chars\nbankAccountName // optional, string, max 60 chars\nbankSortCode // optional, string, max 10 chars\nbankAccountNumber // optional, string, max 60 chars\nbacsRef // optional, string, max 60 chars\niban // optional, string, max 60 chars\nbicSwift // optional, string, max 60 chars\nrollNumber // optional, string, max 60 chars\naddtitionalRef1 // optional, string, max 60 chars\naddtitionalRef2 // optional, string, max 60 chars\naddtitionalRef3 // optional, string, max 60 chars\npaymentType // optional, int, max 2 chars\nsendInvoicesElectronically // optional, bool\nsendLettersElectronically // optional, bool\nanalysis1 // optional, string, max 30 chars\nanalysis2 // optional, string, max 30 chars\nanalysis3 // optional, string, max 30 chars\nanalysis4 // optional, string, max 30 chars\nanalysis5 // optional, string, max 30 chars\nanalysis6 // optional, string, max 30 chars\ndeptNumber // optional, int, max 2 chars\npaymentDueDays // optional, int, max 2 chars\npaymentDueFrom // optional, int, max 1 chars\ninactiveAccount // optional, bool\nvatNumber // optional, string, max 20 chars\ncreditPosition // optional, int, max 1 chars\ndiscountRate // optional, double, max 8 chars\ndiscountType // optional, byte, enum type, max 1 chars\nwww // optional, string, max 255 chars\n\n</code></pre>\n<p>Note:</p>\n<ul>\n<li>Fields email4 to email6 are only available on V29 of Sage and upwards</li>\n</ul>\n<h2 id=\"payment-due-from-status\">Payment Due From Status</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n0    Days After Invoice Date\n1    Days From The First Day Of The Following Month\n2    Days Before The Last Day Of The Following Month\n3    Days Of The Month\n4    Days From 1 Month After Invoice Date\n\n</code></pre>\n<h3 id=\"sales-discount-type\">Sales Discount Type</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Constant         Value            Description \nsdoNoDiscount       0         No Discount Applied \nsdoValueDiscount    1         Discount Applied by Invoice Value \nsdoQtyDiscountA     2         Discount Applied by Banding A \nsdoQtyDiscountB     3         Discount Applied by Banding B \nsdoQtyDiscountC     4         Discount Applied by Banding C \nsdoQtyDiscountD     5         Discount Applied by Banding D \nsdoQtyDiscountE     6         Discount Applied by Banding E\n\n</code></pre>\n<h2 id=\"credit-position-status\">Credit Position Status</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n0        Good\n1        Reminder\n2        Warning\n3        Legal\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","customer",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f29e5090-b8a9-4f51-a8dd-5f88ab68b00e","name":"Update Customer","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"SMOK0001\",\r\n    \"name\": \"Hyperext\",\r\n    \"address1\": \"Hyperext Ltd\",\r\n    \"address2\": \"Unity House\",\r\n    \"address3\": \"Westwood Park\",\r\n    \"address4\": \"Wigan\",\r\n    \"address5\": \"WN3 4HE\",\r\n    \"countryCode\": \"GB\",\r\n    \"contactName\": \"Betty Bruno\",\r\n    \"telephone\": \"01744 697929\"\r\n}"},"url":"{{url}}/api/customer/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:02:40 GMT"},{"key":"Content-Length","value":"64"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": \"SMOK0001\",\n    \"message\": null\n}"}],"_postman_id":"3649a91e-6817-496c-9659-6dae38c8a044"},{"name":"Read Customer Aged Balances","id":"61a51d73-aa01-4399-ac12-1af707da1460","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/agedDebtors/?id={{customer}}","description":"<h1 id=\"aged-debtors\">Aged Debtors</h1>\n<ul>\n<li><p>Description: Gets the aged debts details for a specific customer</p>\n</li>\n<li><p>Endpoint URL: <code>api/agedDebtors/{accountRef}</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","agedDebtors",""],"host":["{{url}}"],"query":[{"key":"id","value":"{{customer}}"}],"variable":[]}},"response":[{"id":"8aee759f-1ea5-46f3-aec1-1e8dde1784b7","name":"Read Customer Aged Balances","originalRequest":{"method":"GET","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":{"raw":"{{url}}/api/agedDebtors/?id={{customer}}","host":["{{url}}"],"path":["api","agedDebtors",""],"query":[{"key":"id","value":"{{customer}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:10:10 GMT"},{"key":"Content-Length","value":"163"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"total\": 0,\n        \"current\": 0,\n        \"future\": 0,\n        \"period30Days\": 0,\n        \"period60Days\": 0,\n        \"period90Days\": 0,\n        \"older\": 0\n    },\n    \"message\": null\n}"}],"_postman_id":"61a51d73-aa01-4399-ac12-1af707da1460"},{"name":"Read Customer Address","id":"ad89c29c-973a-4fac-9d04-66d03bc78e91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/customerAddress/{{customer}}/2","description":"<h2 id=\"read-1-customer-address\">Read 1 Customer Address</h2>\n<ul>\n<li><p>Description: Read 1 customers address. If you are wanting to search for more than 1 customers address use endpoint - api/searchCustomerAddress</p>\n</li>\n<li><p>Endpoint URL: <code>api/customerAddress/{{customer}}/{{addressID}}</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","customerAddress","{{customer}}","2"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f3ee898f-7b08-4d6c-aa71-c2c41908b566","name":"Read Customer Address","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://ariel.hyperext.com:30000/api/customerAddress/SMOK0001/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:12:38 GMT"},{"key":"Content-Length","value":"475"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"accountRef\": \"SMOK0001\",\n        \"addressNumber\": 2,\n        \"addressLine1\": \"addressLine1\",\n        \"addressLine2\": \"addressLine2\",\n        \"addressLine3\": \"addressLine3\",\n        \"addressLine4\": \"addressLine4\",\n        \"addressLine5\": \"addressLine5\",\n        \"countryCode\": \"GB\",\n        \"role\": \"test\",\n        \"contact\": \"Hyperext\",\n        \"description\": \"Registered address\",\n        \"email\": \"support@hyperext.com\",\n        \"fax\": \"\",\n        \"name\": \"SMOK0001\",\n        \"notes\": \"\",\n        \"telephone\": \"01744 697929\",\n        \"telephone2\": \"\",\n        \"vatNumber\": \"\",\n        \"addressType\":0,\n        \"taxCode\": 1\n    },\n    \"message\": null\n}"}],"_postman_id":"ad89c29c-973a-4fac-9d04-66d03bc78e91"},{"name":"Create Customer Address","id":"ce684e3e-b0c8-43e2-bcc8-fe8f35c3ae56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"SMOK0001\",\r\n    \"addressNumber\": 2,\r\n    \"addressLine1\": \"addressLine1\",\r\n    \"addressLine2\": \"addressLine2\",\r\n    \"addressLine3\": \"addressLine3\",\r\n    \"addressLine4\": \"addressLine4\",\r\n    \"addressLine5\": \"addressLine5\",\r\n    \"countryCode\": \"GB\",\r\n    \"role\": \"test\",\r\n    \"contact\": \"Hyperext\",\r\n    \"description\": \"Registered address\",\r\n    \"email\": \"support@hyperext.com\",\r\n    \"fax\": \"\",\r\n    \"name\": \"Hyperext\",\r\n    \"notes\": \"\",\r\n    \"telephone\": \"01744 697929\",\r\n    \"telephone2\": \"\",\r\n    \"taxCode\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/customerAddress","description":"<h2 id=\"create-customer-address\">Create Customer Address</h2>\n<ul>\n<li><p>Description: Creates a new customer address record in Sage</p>\n</li>\n<li><p>Endpoint URL: <code>api/customerAddress</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\"> accountRef // String (max 8 chars), required, customer account must exist\n addressLine1 // String (max 60 chars), optional\n addressLine2 // String (max 60 chars), optional\n addressLine3 // String (max 60 chars), optional\n addressLine4 // String (max 60 chars), optional\n addressLine5 // String (max 60 chars), optional\n countryCode // e.g GB (max 2 chars), optional\n role // String (max 30 chars), optional\n contact // String (max 30 chars), optional\n description // String (max 60 chars), optional\n email //  String (max 255 chars), optional\n fax // String (max 30 chars), optional\n name // String (max 60 chars), optional\n notes // String (max 60 chars), optional\n telephone // String (max 30 chars), optional\n telephone2 // String (max 30 chars) optional\n vatNumber //  String (max 20 chars) optional\n taxCode // Double (max 8 chars) optional\n addressType // Int (max 1 char), optional\n\n</code></pre>\n<h2 id=\"address-type\">Address Type</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n0        Delivery Address\n1        Contact Address\n2        Registered Address\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","customerAddress"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"823075ee-0dd4-41e9-9fb5-9f0b6f2ef522","name":"Create Customer Address","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"SMOK0001\",\r\n    \"addressNumber\": 2,\r\n    \"addressLine1\": \"addressLine1\",\r\n    \"addressLine2\": \"addressLine2\",\r\n    \"addressLine3\": \"addressLine3\",\r\n    \"addressLine4\": \"addressLine4\",\r\n    \"addressLine5\": \"addressLine5\",\r\n    \"countryCode\": \"GB\",\r\n    \"role\": \"test\",\r\n    \"contact\": \"Hyperext\",\r\n    \"description\": \"Registered address\",\r\n    \"email\": \"support@hyperext.com\",\r\n    \"fax\": \"\",\r\n    \"name\": \"Hyperext\",\r\n    \"notes\": \"\",\r\n    \"telephone\": \"01744 697929\",\r\n    \"telephone2\": \"\",\r\n    \"taxCode\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/customerAddress"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:07:19 GMT"},{"key":"Content-Length","value":"55"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 2,\n    \"message\": null\n}"}],"_postman_id":"ce684e3e-b0c8-43e2-bcc8-fe8f35c3ae56"},{"name":"Update Customer Address","id":"64ec46d8-b1f9-4a8e-a276-af5a011f842f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"ABS001\",\r\n    \"addressNumber\": 1,\r\n    \"addressLine1\": \"2\",\r\n    \"addressLine2\": \"3\",\r\n    \"addressLine3\": \"4\",\r\n    \"addressLine4\": \"5\",\r\n    \"addressLine5\": \"\",\r\n    \"countryCode\": \"GB\",\r\n    \"role\": \"\",\r\n    \"contact\": \"\",\r\n    \"description\": \"Registered address\",\r\n    \"email\": \"\",\r\n    \"fax\": \"\",\r\n    \"name\": \"TEST\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/customerAddress","description":"<h2 id=\"create-customer-address\">Create Customer Address</h2>\n<ul>\n<li><p>Description: Updates a customer address record in Sage</p>\n</li>\n<li><p>Endpoint URL: <code>api/customerAddress</code></p>\n</li>\n<li><p>Method: <code>PATCH</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\"> accountRef // String (max 8 chars), required, customer account must exist\n addresNumber // Int (max 2 chars), required\n addressLine1 // String (max 60 chars), optional\n addressLine2 // String (max 60 chars), optional\n addressLine3 // String (max 60 chars), optional\n addressLine4 // String (max 60 chars), optional\n addressLine5 // String (max 60 chars), optional\n countryCode // e.g GB (max 2 chars), optional\n role // String (max 30 chars), optional\n contact // String (max 30 chars), optional\n description // String (max 60 chars), optional\n email //  String (max 255 chars), optional\n fax // String (max 30 chars), optional\n name // String (max 60 chars), optional\n notes // String (max 60 chars), optional\n telephone // String (max 30 chars), optional\n telephone2 // String (max 30 chars) optional\n vatNumber //  String (max 20 chars) optional\n taxCode // Double (max 8 chars) optional\n addressType // Int (max 1 char), optional\n\n</code></pre>\n<h2 id=\"address-type\">Address Type</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n0        Delivery Address\n1        Contact Address\n2        Registered Address\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","customerAddress"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"57b2b03c-0016-4ee8-8d2a-638d3585a0f0","name":"Update Customer Address","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"ABS001\",\r\n    \"addressNumber\": 1,\r\n    \"addressLine1\": \"2\",\r\n    \"addressLine2\": \"3\",\r\n    \"addressLine3\": \"4\",\r\n    \"addressLine4\": \"5\",\r\n    \"addressLine5\": \"\",\r\n    \"countryCode\": \"GB\",\r\n    \"role\": \"\",\r\n    \"contact\": \"\",\r\n    \"description\": \"Registered address\",\r\n    \"email\": \"\",\r\n    \"fax\": \"\",\r\n    \"name\": \"TEST\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/customerAddress"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 31 Oct 2024 11:46:11 GMT"},{"key":"Content-Length","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": true,\n    \"message\": null\n}"}],"_postman_id":"64ec46d8-b1f9-4a8e-a276-af5a011f842f"},{"name":"Search Customer Address","id":"275ddf7a-c61c-4747-ab2e-803ddd1f3aa8","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"field\": \"RECORD_MODIFY_DATE\",\r\n    \"type\": \"gte\",\r\n    \"value\": \"01/01/2024\"\r\n  }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchCustomerAddress","description":"<h2 id=\"search-customer-address\">Search Customer Address</h2>\n<ul>\n<li><p>Description: Searches exisiting customer address</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchCustomerAddress</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchCustomerAddress"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a7bd5c32-ab52-40cd-8571-45c6bf4bd15a","name":"Search Customer Address","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"field\": \"RECORD_MODIFY_DATE\",\r\n    \"type\": \"gte\",\r\n    \"value\": \"01/01/2024\"\r\n  }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchCustomerAddress"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 06 Oct 2025 12:43:49 GMT"},{"key":"Content-Length","value":"13753"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"accountRef\": \"A1D001\",\n            \"addressNumber\": 5,\n            \"addressLine1\": \"Hyperext Ltd\",\n            \"addressLine2\": \"Unity House\",\n            \"addressLine3\": \"Westwood Park\",\n            \"addressLine4\": \"Wigan\",\n            \"addressLine5\": \"WN3 4HE\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"Betty Bruno\",\n            \"description\": \"Registered address\",\n            \"email\": \"newbusinessadvice@sage.com\",\n            \"fax\": \"01742 876 236\",\n            \"name\": \"Hyperext\",\n            \"notes\": \"\",\n            \"telephone\": \"01744 697929\",\n            \"telephone2\": \"01742 876 235\",\n            \"vatNumber\": \"GB238 3839 38\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"06/02/2013 10:03:05\",\n            \"recordModifyDate\": \"26/06/2025 09:15:21\"\n        },\n        {\n            \"accountRef\": \"CLTEST\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"\",\n            \"addressLine2\": \"\",\n            \"addressLine3\": \"\",\n            \"addressLine4\": \"\",\n            \"addressLine5\": \"\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"\",\n            \"description\": \"Registered address\",\n            \"email\": \"\",\n            \"fax\": \"\",\n            \"name\": \"\",\n            \"notes\": \"\",\n            \"telephone\": \"\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"25/04/2025 16:34:30\",\n            \"recordModifyDate\": \"25/04/2025 16:34:30\"\n        },\n        {\n            \"accountRef\": \"FFIE0001\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"\",\n            \"addressLine2\": \"\",\n            \"addressLine3\": \"\",\n            \"addressLine4\": \"\",\n            \"addressLine5\": \"\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"\",\n            \"description\": \"Registered address\",\n            \"email\": \"\",\n            \"fax\": \"\",\n            \"name\": \"\",\n            \"notes\": \"\",\n            \"telephone\": \"\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"17/04/2025 15:32:51\",\n            \"recordModifyDate\": \"17/04/2025 15:32:51\"\n        },\n        {\n            \"accountRef\": \"GARD0001\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"\",\n            \"addressLine2\": \"\",\n            \"addressLine3\": \"\",\n            \"addressLine4\": \"\",\n            \"addressLine5\": \"\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"\",\n            \"description\": \"Registered address\",\n            \"email\": \"\",\n            \"fax\": \"\",\n            \"name\": \"GARD0001\",\n            \"notes\": \"\",\n            \"telephone\": \"\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"28/04/2025 10:55:19\",\n            \"recordModifyDate\": \"28/04/2025 10:55:19\"\n        },\n        {\n            \"accountRef\": \"JAMES32\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"\",\n            \"addressLine2\": \"\",\n            \"addressLine3\": \"\",\n            \"addressLine4\": \"\",\n            \"addressLine5\": \"\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"\",\n            \"description\": \"Registered address\",\n            \"email\": \"\",\n            \"fax\": \"\",\n            \"name\": \"JAMES32\",\n            \"notes\": \"\",\n            \"telephone\": \"\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"15/05/2025 09:06:05\",\n            \"recordModifyDate\": \"15/05/2025 09:06:05\"\n        },\n        {\n            \"accountRef\": \"LESL0001\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"221 Main Street\",\n            \"addressLine2\": \"Haydock\",\n            \"addressLine3\": \"St HELENS\",\n            \"addressLine4\": \"WA10 6RP\",\n            \"addressLine5\": \"United Kingdom\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"Hyperext\",\n            \"description\": \"Registered address\",\n            \"email\": \"support@hyperext.com\",\n            \"fax\": \"\",\n            \"name\": \"lesley lee\",\n            \"notes\": \"\",\n            \"telephone\": \"01744 697929\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"12/06/2025 14:48:22\",\n            \"recordModifyDate\": \"12/06/2025 14:48:22\"\n        },\n        {\n            \"accountRef\": \"SMOK0001\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"221 Main Street\",\n            \"addressLine2\": \"Haydock\",\n            \"addressLine3\": \"St HELENS\",\n            \"addressLine4\": \"WA10 6RP\",\n            \"addressLine5\": \"United Kingdom\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"Hyperext\",\n            \"description\": \"Registered address\",\n            \"email\": \"support@hyperext.com\",\n            \"fax\": \"\",\n            \"name\": \"Smokey BBQ Co\",\n            \"notes\": \"\",\n            \"telephone\": \"01744 697929\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"12/06/2025 14:48:02\",\n            \"recordModifyDate\": \"12/06/2025 14:48:02\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"\",\n            \"addressLine2\": \"\",\n            \"addressLine3\": \"\",\n            \"addressLine4\": \"\",\n            \"addressLine5\": \"\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"\",\n            \"description\": \"Registered address\",\n            \"email\": \"\",\n            \"fax\": \"\",\n            \"name\": \"\",\n            \"notes\": \"\",\n            \"telephone\": \"\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"08/05/2025 12:18:18\",\n            \"recordModifyDate\": \"08/05/2025 12:18:18\"\n        },\n        {\n            \"accountRef\": \"TEST0001\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"123 Custom Street\",\n            \"addressLine2\": \"Suite 456\",\n            \"addressLine3\": \"Custom City\",\n            \"addressLine4\": \"CC1 2CC\",\n            \"addressLine5\": \"United Kingdom\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"John Custom\",\n            \"description\": \"Registered address\",\n            \"email\": \"custom@example.com\",\n            \"fax\": \"\",\n            \"name\": \"Test\",\n            \"notes\": \"\",\n            \"telephone\": \"0777 888 9999\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"GB987654321\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"10/06/2025 12:40:13\",\n            \"recordModifyDate\": \"10/06/2025 12:40:13\"\n        },\n        {\n            \"accountRef\": \"TEST0002\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"1 Testing Street\",\n            \"addressLine2\": \"Tech District\",\n            \"addressLine3\": \"Testborough\",\n            \"addressLine4\": \"TE1 1ST\",\n            \"addressLine5\": \"GB\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"Jane Smith\",\n            \"description\": \"Registered address\",\n            \"email\": \"test@example.com\",\n            \"fax\": \"\",\n            \"name\": \"Test Company 2025-06-10 11:47:27\",\n            \"notes\": \"\",\n            \"telephone\": \"020 1234 5678\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"GB123456789\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"10/06/2025 12:55:07\",\n            \"recordModifyDate\": \"10/06/2025 12:55:07\"\n        },\n        {\n            \"accountRef\": \"AIRF0001\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"\",\n            \"addressLine2\": \"\",\n            \"addressLine3\": \"\",\n            \"addressLine4\": \"\",\n            \"addressLine5\": \"\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"\",\n            \"description\": \"Registered address\",\n            \"email\": \"\",\n            \"fax\": \"\",\n            \"name\": \"\",\n            \"notes\": \"\",\n            \"telephone\": \"\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"19/06/2025 14:32:47\",\n            \"recordModifyDate\": \"19/06/2025 14:32:47\"\n        },\n        {\n            \"accountRef\": \"RAND\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"\",\n            \"addressLine2\": \"\",\n            \"addressLine3\": \"\",\n            \"addressLine4\": \"\",\n            \"addressLine5\": \"\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"\",\n            \"description\": \"Registered address\",\n            \"email\": \"\",\n            \"fax\": \"\",\n            \"name\": \"\",\n            \"notes\": \"\",\n            \"telephone\": \"\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"20/06/2025 12:59:13\",\n            \"recordModifyDate\": \"20/06/2025 12:59:13\"\n        },\n        {\n            \"accountRef\": \"R1\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"\",\n            \"addressLine2\": \"\",\n            \"addressLine3\": \"\",\n            \"addressLine4\": \"\",\n            \"addressLine5\": \"\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"\",\n            \"description\": \"Registered address\",\n            \"email\": \"\",\n            \"fax\": \"\",\n            \"name\": \"\",\n            \"notes\": \"\",\n            \"telephone\": \"\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"23/06/2025 12:01:23\",\n            \"recordModifyDate\": \"23/06/2025 12:01:23\"\n        },\n        {\n            \"accountRef\": \"SMOK0002\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"221 Main Street\",\n            \"addressLine2\": \"Haydock\",\n            \"addressLine3\": \"St HELENS\",\n            \"addressLine4\": \"WA10 6RP\",\n            \"addressLine5\": \"United Kingdom\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"Hyperext\",\n            \"description\": \"Registered address\",\n            \"email\": \"support@hyperext.com\",\n            \"fax\": \"\",\n            \"name\": \"Smokey BBQ Co\",\n            \"notes\": \"\",\n            \"telephone\": \"01744 697929\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"26/06/2025 09:29:59\",\n            \"recordModifyDate\": \"26/06/2025 09:29:59\"\n        },\n        {\n            \"accountRef\": \"TEST&123\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"\",\n            \"addressLine2\": \"\",\n            \"addressLine3\": \"\",\n            \"addressLine4\": \"\",\n            \"addressLine5\": \"\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"\",\n            \"description\": \"Registered address\",\n            \"email\": \"\",\n            \"fax\": \"\",\n            \"name\": \"\",\n            \"notes\": \"\",\n            \"telephone\": \"\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"01/07/2025 10:14:49\",\n            \"recordModifyDate\": \"01/07/2025 10:14:49\"\n        },\n        {\n            \"accountRef\": \"SMOK0003\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"221 Main Street\",\n            \"addressLine2\": \"Haydock\",\n            \"addressLine3\": \"St HELENS\",\n            \"addressLine4\": \"WA10 6RP\",\n            \"addressLine5\": \"United Kingdom\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"Hyperext\",\n            \"description\": \"Registered address\",\n            \"email\": \"support@hyperext.com\",\n            \"fax\": \"\",\n            \"name\": \"Smokey BBQ Co\",\n            \"notes\": \"\",\n            \"telephone\": \"01744 697929\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"07/07/2025 11:41:00\",\n            \"recordModifyDate\": \"07/07/2025 11:41:00\"\n        },\n        {\n            \"accountRef\": \"ZAR\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"\",\n            \"addressLine2\": \"\",\n            \"addressLine3\": \"\",\n            \"addressLine4\": \"\",\n            \"addressLine5\": \"\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"\",\n            \"description\": \"Registered address\",\n            \"email\": \"\",\n            \"fax\": \"\",\n            \"name\": \"\",\n            \"notes\": \"\",\n            \"telephone\": \"\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"07/07/2025 11:43:04\",\n            \"recordModifyDate\": \"07/07/2025 11:43:04\"\n        },\n        {\n            \"accountRef\": \"ZAR2\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"\",\n            \"addressLine2\": \"\",\n            \"addressLine3\": \"\",\n            \"addressLine4\": \"\",\n            \"addressLine5\": \"\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"\",\n            \"description\": \"Registered address\",\n            \"email\": \"\",\n            \"fax\": \"\",\n            \"name\": \"\",\n            \"notes\": \"\",\n            \"telephone\": \"\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"08/07/2025 15:45:05\",\n            \"recordModifyDate\": \"08/07/2025 15:45:54\"\n        },\n        {\n            \"accountRef\": \"ZAR3\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"\",\n            \"addressLine2\": \"\",\n            \"addressLine3\": \"\",\n            \"addressLine4\": \"\",\n            \"addressLine5\": \"\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"\",\n            \"description\": \"Registered address\",\n            \"email\": \"\",\n            \"fax\": \"\",\n            \"name\": \"\",\n            \"notes\": \"\",\n            \"telephone\": \"\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"08/07/2025 16:12:30\",\n            \"recordModifyDate\": \"08/07/2025 16:12:30\"\n        },\n        {\n            \"accountRef\": \"SMOK0004\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"221 Main Street\",\n            \"addressLine2\": \"Haydock\",\n            \"addressLine3\": \"St HELENS\",\n            \"addressLine4\": \"WA10 6RP\",\n            \"addressLine5\": \"United Kingdom\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"Hyperext\",\n            \"description\": \"Registered address\",\n            \"email\": \"support@hyperext.com\",\n            \"fax\": \"\",\n            \"name\": \"Smokey BBQ Co\",\n            \"notes\": \"\",\n            \"telephone\": \"01744 697929\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"11/07/2025 12:55:23\",\n            \"recordModifyDate\": \"11/07/2025 12:55:23\"\n        },\n        {\n            \"accountRef\": \"FREI0001\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"221 Main Street\",\n            \"addressLine2\": \"Haydock\",\n            \"addressLine3\": \"St HELENS\",\n            \"addressLine4\": \"WA10 6RP\",\n            \"addressLine5\": \"United Kingdom\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"Hyperext\",\n            \"description\": \"Registered address\",\n            \"email\": \"support@hyperext.com\",\n            \"fax\": \"\",\n            \"name\": \"Freight Suite\",\n            \"notes\": \"\",\n            \"telephone\": \"01744 697929\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"14/07/2025 10:35:09\",\n            \"recordModifyDate\": \"14/07/2025 10:35:09\"\n        },\n        {\n            \"accountRef\": \"SMOK0005\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"221 Main Street\",\n            \"addressLine2\": \"Haydock\",\n            \"addressLine3\": \"St HELENS\",\n            \"addressLine4\": \"WA10 6RP\",\n            \"addressLine5\": \"United Kingdom\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"Hyperext\",\n            \"description\": \"Registered address\",\n            \"email\": \"support@hyperext.com\",\n            \"fax\": \"\",\n            \"name\": \"Smokey BBQ Co\",\n            \"notes\": \"\",\n            \"telephone\": \"01744 697929\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"13/08/2025 09:00:58\",\n            \"recordModifyDate\": \"13/08/2025 09:00:58\"\n        },\n        {\n            \"accountRef\": \"SMOK0006\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"221 Main Street\",\n            \"addressLine2\": \"Haydock\",\n            \"addressLine3\": \"St HELENS\",\n            \"addressLine4\": \"WA10 6RP\",\n            \"addressLine5\": \"United Kingdom\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"Hyperext\",\n            \"description\": \"Registered address\",\n            \"email\": \"support@hyperext.com\",\n            \"fax\": \"\",\n            \"name\": \"Smokey BBQ Co\",\n            \"notes\": \"\",\n            \"telephone\": \"01744 697929\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"13/08/2025 09:16:08\",\n            \"recordModifyDate\": \"13/08/2025 09:16:08\"\n        },\n        {\n            \"accountRef\": \"SMOK0007\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"221 Main Street\",\n            \"addressLine2\": \"Haydock\",\n            \"addressLine3\": \"St HELENS\",\n            \"addressLine4\": \"WA10 6RP\",\n            \"addressLine5\": \"United Kingdom\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"Hyperext\",\n            \"description\": \"Registered address\",\n            \"email\": \"support@hyperext.com\",\n            \"fax\": \"\",\n            \"name\": \"Smokey BBQ Co\",\n            \"notes\": \"\",\n            \"telephone\": \"01744 697929\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"25/09/2025 09:30:02\",\n            \"recordModifyDate\": \"25/09/2025 09:30:02\"\n        },\n        {\n            \"accountRef\": \"SMOK0008\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"221 Main Street\",\n            \"addressLine2\": \"Haydock\",\n            \"addressLine3\": \"St HELENS\",\n            \"addressLine4\": \"WA10 6RP\",\n            \"addressLine5\": \"United Kingdom\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"Hyperext\",\n            \"description\": \"Registered address\",\n            \"email\": \"support@hyperext.com\",\n            \"fax\": \"\",\n            \"name\": \"Smokey BBQ Co\",\n            \"notes\": \"\",\n            \"telephone\": \"01744 697929\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"25/09/2025 09:30:59\",\n            \"recordModifyDate\": \"25/09/2025 09:55:09\"\n        },\n        {\n            \"accountRef\": \"SMOK0008\",\n            \"addressNumber\": 2,\n            \"addressLine1\": \"221 Main Street\",\n            \"addressLine2\": \"Haydock\",\n            \"addressLine3\": \"St HELENS\",\n            \"addressLine4\": \"WA10 6RP\",\n            \"addressLine5\": \"United Kingdom\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"TABC\",\n            \"description\": \"Trade contact\",\n            \"email\": \"support@hyperext.com\",\n            \"fax\": \"\",\n            \"name\": \"Smokey BBQ Co\",\n            \"notes\": \"\",\n            \"telephone\": \"01744 697929\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Contact\",\n            \"addressType\": 1,\n            \"recordCreateDate\": \"25/09/2025 09:57:49\",\n            \"recordModifyDate\": \"25/09/2025 09:57:49\"\n        },\n        {\n            \"accountRef\": \"STES0001\",\n            \"addressNumber\": 1,\n            \"addressLine1\": \"221 Main Street\",\n            \"addressLine2\": \"Haydock\",\n            \"addressLine3\": \"St HELENS\",\n            \"addressLine4\": \"WA10 6RP\",\n            \"addressLine5\": \"United Kingdom\",\n            \"countryCode\": \"GB\",\n            \"role\": \"\",\n            \"contact\": \"Hyperext\",\n            \"description\": \"Registered address\",\n            \"email\": \"support@hyperext.com\",\n            \"fax\": \"\",\n            \"name\": \"Stest\",\n            \"notes\": \"\",\n            \"telephone\": \"01744 697929\",\n            \"telephone2\": \"\",\n            \"vatNumber\": \"\",\n            \"taxCode\": 1,\n            \"addressTypeName\": \"Registered Address\",\n            \"addressType\": 2,\n            \"recordCreateDate\": \"25/09/2025 10:00:29\",\n            \"recordModifyDate\": \"25/09/2025 10:00:29\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"275ddf7a-c61c-4747-ab2e-803ddd1f3aa8"},{"name":"Search Customer Alerts","id":"380fd9f3-01f5-4dfa-a457-14b592d6b8bd","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"field\": \"RECORD_MODIFY_DATE\",\r\n    \"type\": \"gte\",\r\n    \"value\": \"05/02/2026\"\r\n  }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchCustomAlert","description":"<h2 id=\"search-customer-alerts\">Search Customer Alerts</h2>\n<ul>\n<li><p>Description: Searches Alerts on both Customers &amp; Suppliers</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchCustomAlert</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n<h2 id=\"display-in-status\">Display In Status</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n1        Invoices\n2        Quotes\n3        Invoices &amp; Quotes\n4        Sales Orders\n5        Invoices &amp; Sales Orders\n6        Quotes &amp; Sales Orders\n7        Invoices &amp; Quotes &amp; Sales Orders\n8        Purchase Orders\n\n</code></pre>\n<h2 id=\"type-status\">Type Status</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n0        Customer\n1        Supplier\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchCustomAlert"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"996ba389-56e9-4a56-a60d-aaebb9ad7fff","name":"Search Customer Alerts","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"field\": \"RECORD_MODIFY_DATE\",\r\n    \"type\": \"gte\",\r\n    \"value\": \"05/02/2026\"\r\n  }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchCustomAlert"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 05 Feb 2026 10:16:55 GMT"},{"key":"Content-Length","value":"604"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"uniqueId\": 4,\n            \"reference\": \"BRO001\",\n            \"displayIn\": 1,\n            \"displayInInvoices\": true,\n            \"displayInQuotes\": false,\n            \"displayInSalesOrders\": false,\n            \"active\": 1,\n            \"alertMessage\": \"Invoice Pop-up\",\n            \"type\": 0,\n            \"recordCreateDate\": \"05/02/2026\",\n            \"recordModifyDate\": \"05/02/2026\",\n            \"recordDeleted\": false\n        },\n        {\n            \"uniqueId\": 5,\n            \"reference\": \"BRO001\",\n            \"displayIn\": 1,\n            \"displayInInvoices\": true,\n            \"displayInQuotes\": false,\n            \"displayInSalesOrders\": false,\n            \"active\": 1,\n            \"alertMessage\": \"Invoice Embedded\",\n            \"type\": 0,\n            \"recordCreateDate\": \"05/02/2026\",\n            \"recordModifyDate\": \"05/02/2026\",\n            \"recordDeleted\": false\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"380fd9f3-01f5-4dfa-a457-14b592d6b8bd"}],"id":"006faa2f-bd6d-46c0-88cb-acb1d497de93","_postman_id":"006faa2f-bd6d-46c0-88cb-acb1d497de93","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}},{"name":"Suppliers","item":[{"name":"Search Supplier","id":"4461fad9-9380-40c8-9365-6fcf951eb610","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"field\": \"RECORD_MODIFY_DATE\",\r\n    \"type\": \"gte\",\r\n    \"value\": \"01/01/2026\"\r\n  }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchPurchaseLedger","description":"<h2 id=\"search-purchase-ledgers-suppliers\">Search Purchase Ledgers (suppliers)</h2>\n<ul>\n<li><p>Description: Searches the PURCHASE_LEDGER table in Sage.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchPurchaseLedger</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchPurchaseLedger"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a737c09c-4da1-4a2c-967e-2fcb3c53c8cc","name":"Search Supplier","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"field\": \"RECORD_MODIFY_DATE\",\r\n    \"type\": \"gte\",\r\n    \"value\": \"01/01/2026\"\r\n  }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchPurchaseLedger"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 12 Jan 2026 14:34:07 GMT"},{"key":"Content-Length","value":"1104"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"accountRef\": \"CON001\",\n            \"name\": \"Concept Stationery Supplier\",\n            \"balance\": 15440.76,\n            \"currency\": \"1\",\n            \"contactName\": \"Mark Ramsay\",\n            \"telephoneNumber\": \"0191 643 4343\",\n            \"address1\": \"66 New Street\",\n            \"address2\": \"Ridgeway\",\n            \"address3\": \"Newcastle upon Tyne\",\n            \"address4\": \"\",\n            \"address5\": \"NE1 4GF\",\n            \"accountOnHold\": false,\n            \"accountStatusText\": \"Open\",\n            \"creditLimit\": 17000,\n            \"terms\": \"45Days Nett\",\n            \"turnoverYtd\": 2303.79,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\",\n            \"recordModifyDate\": \"12/01/2026 14:34:01\",\n            \"telephone2\": \"0191 643 4344\",\n            \"fax\": \"0191 643 4345\",\n            \"webAddress\": \"www.sage.co.uk\",\n            \"countryCode\": \"GB\",\n            \"email\": \"newbusinessadvice@sage.com\",\n            \"email2\": \"\",\n            \"email3\": \"\",\n            \"defTaxCode\": \"T1\",\n            \"analysis1\": \"North East\",\n            \"analysis2\": \"Stationery\",\n            \"analysis3\": \"\",\n            \"deptNumber\": 2,\n            \"inactiveAccount\": 0,\n            \"discountRate\": 10,\n            \"paymentDueDays\": 45,\n            \"paymentDueFrom\": 0,\n            \"paymentMethodId\": 1,\n            \"defNomCode\": \"5000\",\n            \"settleDueDays\": 30,\n            \"creditPosition\": \"Good\",\n            \"incoTerms\": 0,\n            \"incoTermsText\": \"\",\n            \"tradeContact\": \"Anthony Thane\",\n            \"vatRegNumber\": \"GB988 3453 23\",\n            \"eoriNumber\": \"\",\n            \"companyRegistrationNumber\": \"\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"4461fad9-9380-40c8-9365-6fcf951eb610"},{"name":"Read Supplier","id":"ee233513-f077-4d32-9694-ee6abcac1972","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/supplier/{{supplier}}","description":"<p>Get Supplier</p>\n<ul>\n<li><p>Description: Fetches a single supplier. If wanting to get full list of suppliers use - api/searchPurchaseLedger.</p>\n</li>\n<li><p>Endpoint URL: <code>api/supplier/{accountRef}</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: accountRef</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","supplier","{{supplier}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"cf544ab2-87a3-4565-94a5-bcb45819506d","name":"Read Supplier","originalRequest":{"method":"GET","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/supplier/CON001"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 09 Sep 2025 09:33:15 GMT"},{"key":"Content-Length","value":"851"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"accountRef\": \"CON001\",\n        \"name\": \"Concept Stationery Supplies\",\n        \"address1\": \"66 New Street\",\n        \"address2\": \"Ridgeway\",\n        \"address3\": \"Newcastle upon Tyne\",\n        \"address4\": \"\",\n        \"address5\": \"NE1 4GF\",\n        \"contactName\": \"Mark Ramsay\",\n        \"telephone\": \"0191 643 4343\",\n        \"telephone2\": \"0191 643 4344\",\n        \"terms\": \"45Days Nett\",\n        \"defaultNominalCode\": \"5000\",\n        \"discountRate\": 10,\n        \"paymentMethodId\": 1,\n        \"paymentDueDays\": 45,\n        \"paymentDueFrom\": 0,\n        \"countryCode\": \"GB\",\n        \"email\": \"newbusinessadvice@sage.com\",\n        \"email2\": \"\",\n        \"email3\": \"\",\n        \"currency\": 1,\n        \"inactiveFlag\": false,\n        \"balance\": 15440.76,\n        \"creditLimit\": 17000,\n        \"accountStatus\": 0,\n        \"onHold\": false,\n        \"bankAccountName\": \"Concept Stationery Supplies\",\n        \"bankSortCode\": \"88-99-99\",\n        \"bankAccountNumber\": \"99889988\",\n        \"defaultTaxCode\": 1,\n        \"tradeContact\": \"Anthony Thane\",\n        \"vatNumber\": \"GB988 3453 23\",\n        \"eoriNumber\": \"\",\n        \"termsAgreed\": true\n    },\n    \"message\": null\n}"}],"_postman_id":"ee233513-f077-4d32-9694-ee6abcac1972"},{"name":"Create Supplier","id":"374ef52e-fb42-4f50-976c-45530f1da566","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":" {\r\n        \r\n        \"name\": \"New Supplier\",\r\n        \"address1\": \"123 Back Street\",\r\n        \"address2\": \"This Area\",\r\n        \"address3\": \"Hoverville\",\r\n        \"address4\": \"Stockton\",\r\n        \"address5\": \"ST03 3RS\",\r\n        \"contactName\": \"Hyperext\",\r\n        \"telephone\": \"01744697929\",\r\n        \"terms\": \"30 days net\",\r\n        \"defaultNominalCode\": \"5000\",\r\n        \"countryCode\": \"GB\",\r\n        \"email\": \"support@hyperext.com\",\r\n        \"currency\": 1\r\n    }","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/supplier","description":"<h2 id=\"post-create-supplier\">Post Create Supplier</h2>\n<ul>\n<li><p>Description: Creates a new supplier record in Sage</p>\n</li>\n<li><p>Endpoint URL: <code>api/supplier</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">name // String, required, max 60 chars\ncontactName // String, required , max 30 chars\ntradeContact // String, optional, max 30 chars\ntelephone // String, optional, max 30 chars\ntelephone2 // String, optional, max 30 chars\naddress1 // String, optional, max 60 chars\naddress2 // String, optional, max 60 chars\naddress3 // String, optional, max 60 chars\naddress4 // String, optional, max 60 chars\naddress5 // String, optional, max 60 chars\nemail // String, optional, max 255 chars\nemail2 // String, optional, max 255 chars\nemail3 // String, optional, max 255 chars\ndefaultNominalCode // string, optional, max 8 chars\nterms // string, optional, max 30 chars\ncreditLimit // optional, int\ncountryCode // String, optional, max 2 chars\npaymentDueFrom // Int, optional, max 1 chars\ncurrency // Int, optional, max 1 chars, use values from sage Settings &gt; Currencies, not available in Patch\npaymentMethodId // Int, optional, max 1 chars, uses payment method outlined on Bank tab in Supplier Record\ndiscountRate //  Double, optional, max 8 chars\npaymentDueDays // Int, optional, max 3 chars\ninactiveFlag // Bool, optional, false = active &amp; true = inactive\naccountStatus // optional,  int, max 2 digits\nonHold // optional, bool\nbankAccountName // String, Optional, max 60 chars\nbankSortCode // String, Optional, format 00-00-00\nbankAccountNumber // String, Optional, max 60 chars\ndefaultTaxCode // Int, Optional, max 2 chars\nvatNumber // String, Optional, max 20 chars\neoriNumber // String, Optional, max 17 chars\n\n</code></pre>\n<h2 id=\"payment-due-from-status\">Payment Due From Status</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n0    Days After Invoice Date\n1    Days From The First Day Of The Following Month\n2    Days Before The Last Day Of The Following Month\n3    Days Of The Month\n4    Days From 1 Month After Invoice Date\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","supplier"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c3fbf5ee-ab5c-44d7-bfbd-8647ecbd29ca","name":"Create Supplier","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":" {\r\n        \r\n        \"name\": \"New Supplier\",\r\n        \"address1\": \"123 Back Street\",\r\n        \"address2\": \"This Area\",\r\n        \"address3\": \"Hoverville\",\r\n        \"address4\": \"Stockton\",\r\n        \"address5\": \"ST03 3RS\",\r\n        \"contactName\": \"Hyperext\",\r\n        \"telephone\": \"01744697929\",\r\n        \"terms\": \"30 days net\",\r\n        \"defaultNominalCode\": \"5000\",\r\n        \"countryCode\": \"GB\",\r\n        \"email\": \"support@hyperext.com\",\r\n        \"currency\": 1,\r\n        \"eoriNumber\": \"96325874100032145\"\r\n    }","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/supplier"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:27:37 GMT"},{"key":"Content-Length","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": \"NEWS\",\n    \"message\": null\n}"}],"_postman_id":"374ef52e-fb42-4f50-976c-45530f1da566"},{"name":"Update Supplier","id":"6c8be993-5adb-4f7f-b588-ae97cc5f19bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"accountRef\": \"CUT001\",\r\n        \"name\": \"Cutting Edge Laser Ltd\",\r\n        \"address1\": \"Unit B, Vector 31,\",\r\n        \"address2\": \"Waleswood Way,\",\r\n        \"address3\": \"Wales\",\r\n        \"address4\": \"Sheffield\",\r\n        \"address5\": \"S26 5NU\",\r\n        \"contactName\": \"Tim Adams\",\r\n        \"telephone\": \"01909 773 877\",\r\n        \"terms\": \"\",\r\n        \"defaultNominalCode\": \"4009\",\r\n        \"discountRate\": 0.0,\r\n        \"paymentMethodId\": 0,\r\n        \"paymentDueDays\": 60,\r\n        \"paymentDueFrom\": 0,\r\n        \"countryCode\": \"GB\",\r\n        \"email\": \"Cutting Edge Laser Accounts <accounts@cuttingedgelaser.co.uk>\",\r\n        \"email2\": \"\",\r\n        \"email3\": \"\",\r\n        \"currency\": 1,\r\n        \"inactiveFlag\": false,\r\n        \"balance\": 0.0,\r\n        \"bankAccountName\": \"\",\r\n        \"bankSortCode\": \"\",\r\n        \"bankAccountNumber\": \"\",\r\n        \"defaultTaxCode\": 1,\r\n        \"vatNumber\": \"\"\r\n}"},"url":"{{url}}/api/supplier","description":"<h2 id=\"patch-editupdate-supplier\">PATCH Edit/Update Supplier</h2>\n<ul>\n<li><p>Description: Edit a supplier record in Sage</p>\n</li>\n<li><p>Endpoint URL: <code>api/supplier</code></p>\n</li>\n<li><p>Method: <code>PATCH</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">accountRef // String, required, max 8 chars\nname // String, optional, max 60 chars\naddress1 // String, optional, max 60 chars\naddress2 // String, optional, max 60 chars\naddress3 // String, optional, max 60 chars\naddress4 // String, optional, max 60 chars\naddress5 // String, optional, max 60 chars\ncontactName // String, optional, max 30 chars\ntradeContact // String, optional, max 30 chars\ntelephone // String, optional, max 30 chars\ntelephone2 // String, optional, max 30 chars\nterms // String, optional, max 30 chars\ncreditLimit // optional, int\ndefaultNominalCode // String, optional, max 8 chars\ncountryCode // String, optional, max 2 chars\npaymentDueFrom // Int, optional, max 1 chars\nemail // String, optional, max 255 chars\neoriNumber // String, Optional, max 17 chars\naccountStatus // optional,  int, max 2 digits\nonHold // optional, bool\n\n</code></pre>\n<h2 id=\"payment-due-from-status\">Payment Due From Status</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n0    Days After Invoice Date\n1    Days From The First Day Of The Following Month\n2    Days Before The Last Day Of The Following Month\n3    Days Of The Month\n4    Days From 1 Month After Invoice Date\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","supplier"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fa992213-26f0-48c3-8c11-c72d2c4a2007","name":"Update Supplier","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"NEWS\",\r\n    \"name\": \"New Supplier\",\r\n    \"address1\": \"New address\",\r\n    \"address2\": \"Line 2\",\r\n    \"address3\": \"Line 3\",\r\n    \"address4\": \"Line 4\",\r\n    \"address5\": \"WN3 4HE\",\r\n    \"contactName\": \"Hyperext\",\r\n    \"telephone\": \"01744697929\",\r\n    \"terms\": \"30 days net\",\r\n    \"defaultNominalCode\": \"5000\",\r\n    \"countryCode\": \"GB\",\r\n    \"email\": \"support@hyperext.com\",\r\n    \"currency\": 1,\r\n    \"eoriNumber\":\"00011122233344455\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/supplier"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:29:50 GMT"},{"key":"Content-Length","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": \"NEWS\",\n    \"message\": null\n}"}],"_postman_id":"6c8be993-5adb-4f7f-b588-ae97cc5f19bd"}],"id":"263c72d1-3e09-4ffc-891d-9c47b8dc59a0","_postman_id":"263c72d1-3e09-4ffc-891d-9c47b8dc59a0","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}},{"name":"Products / Stock","item":[{"name":"Create Product","id":"7404dee3-03e6-43cd-b08b-f5ea0a6c8ab3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"stockCode\": \"TP001\",\r\n    \"description\": \"Test Product One\",\r\n    \"itemType\": 1,\r\n    \"nominalCode\": \"4000\",\r\n    \"unitOfSale\": \"400\",\r\n    \"deptNumber\": 2,\r\n    \"custom1\": \"c1\",\r\n    \"custom2\": \"c2\",\r\n    \"custom3\": \"c3\",\r\n    \"deletedFlag\": false,\r\n    \"inactiveFlag\": false,\r\n    \"salesPrice\": 330.0,\r\n    \"unitWeight\": 5.2,\r\n    \"taxCode\": 1,\r\n    \"qtyAllocated\": 0.0,\r\n    \"qtyInStock\": 35.0,\r\n    \"stockTakeDate\": null,\r\n    \"stockCat\": 1,\r\n    \"averageCostPrice\": 120.0,\r\n    \"location\": \"Text Location\",\r\n    \"purchaseNominalCode\": \"5000\",\r\n    \"lastPurchasePrice\": 120.0,\r\n    \"commodityCode\": \"87654321\",\r\n    \"barcode\": \"11976532738\",\r\n    \"webDetails\": \"Test Product Web Description\",\r\n    \"webDescription\": \"This is the really long web details field that can hold up to 1023 characters like a Text Area.\"\r\n}"},"url":"{{url}}/api/product","description":"<h2 id=\"post-create-product\">Post Create Product</h2>\n<ul>\n<li><p>Description: Creates a single product</p>\n</li>\n<li><p>Endpoint URL: <code>api/product</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">stockCode // string, max 30 chars, required\ndescription // string , max 60 chars, optional\nitemType // int, max 3 chars, optional\nnominalCode // string, max 3 chars, optional\nunitOfSale // string, max 8 chars, optional\ndeptNumber // int, max 5 chars, optional\ndeletedFlag // bool, optional\ninactiveFlag // bool, optional\ncustom1 // string, max 30 chars, optional\ncustom2 // string, max 30 chars, optional\ncustom3 // string, max 30 chars, optional\nsalesPrice // double, max 30 chars, optional\nunitWeight // double, max 8 chars optional\ntax code // int, max 2 chars, optional\nqtyAllocated // double, max 8 chars, optional\nqtyInStock // double, max 8 chars, optional\npurchaseRef // string, max 8 chars, optional, supplier account number\nstockTakeDate // Date, format: dd/mm/yyyy, optional\nstockCat // int, max 5 chars optional\nsupplierPartNumber // string, max 30 chars, optional\naverageCostPrice // double, optional\nlastPurchasePrice  // double, optional\nlastDiscPurchasePrice // double, max 8 chars, optional\nlocation // string, max 16 chars, optional\npurchaseNominalCode // string, max 8 chars, optional\ncommodityCode // string, max 30 chars, optional\ncountryCodeOfOrigin // string, max 2 chars, optional\nbarcode // string, max 60 chars, optional\nwebDetails // string, max 60 chars, optional\nwebDescription // string, max 1023 chars, optional\nwebPublish // int, max 2 chars, optional\nreorderLevel // double, max 8 chars optional\nreorderQty // double, max 8 chars optional\ncomponent1Code // string, max 30 chars, optional\ncomponent1Qty // double, max 8 chars, optional\ncomponent2Code // string, max 30 chars, optional\ncomponent2Qty // double, max 8 chars, optional\ncomponent3Code // string, max 30 chars, optional\ncomponent3Qty // double, max 8 chars, optional\ncomponent4Code // string, max 30 chars, optional\ncomponent4Qty // double, max 8 chars, optional\ncomponent5Code // string, max 30 chars, optional\ncomponent5Qty // double, max 8 chars, optional\ncomponent6Code // string, max 30 chars, optional\ncomponent6Qty // double, max 8 chars, optional\ncomponent7Code // string, max 30 chars, optional\ncomponent7Qty // double, max 8 chars, optional\ncomponent8Code // string, max 30 chars, optional\ncomponent8Qty // double, max 8 chars, optional\ncomponent9Code // string, max 30 chars, optional\ncomponent9Qty // double, max 8 chars, optional\ncomponent10Code // string, max 30 chars, optional\ncomponent10Qty // double, max 8 chars, optional\nlinkLevel // int, max 2 chars, optional\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","product"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3d0d10ac-d0d7-4e88-8d11-46981ecf7f2c","name":"Create Product","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"stockCode\": \"TP001\",\r\n    \"description\": \"Test Product One\",\r\n    \"itemType\": 1,\r\n    \"nominalCode\": \"4000\",\r\n    \"unitOfSale\": \"400\",\r\n    \"deptNumber\": 2,\r\n    \"custom1\": \"c1\",\r\n    \"custom2\": \"c2\",\r\n    \"custom3\": \"c3\",\r\n    \"deletedFlag\": false,\r\n    \"inactiveFlag\": false,\r\n    \"salesPrice\": 330.0,\r\n    \"unitWeight\": 5.2,\r\n    \"taxCode\": 1,\r\n    \"qtyAllocated\": 0.0,\r\n    \"qtyInStock\": 35.0,\r\n    \"stockTakeDate\": null,\r\n    \"stockCat\": 1,\r\n    \"averageCostPrice\": 120.0,\r\n    \"location\": \"Text Location\",\r\n    \"purchaseNominalCode\": \"5000\",\r\n    \"lastPurchasePrice\": 120.0,\r\n    \"commodityCode\": \"87654321\",\r\n    \"barcode\": \"11976532738\",\r\n    \"webDetails\": \"Test Product Web Description\",\r\n    \"webDescription\": \"This is the really long web details field that can hold up to 1023 characters like a Text Area.\"\r\n}"},"url":"{{url}}/api/product"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:43:36 GMT"},{"key":"Content-Length","value":"61"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": \"TP001\",\n    \"message\": null\n}"}],"_postman_id":"7404dee3-03e6-43cd-b08b-f5ea0a6c8ab3"},{"name":"Update Product","id":"ecdc549b-10ff-46e1-b6df-ac276a112e68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"stockCode\": \"TP001\",\r\n    \"description\": \"Test Product One\",\r\n    \"itemType\": 1,\r\n    \"nominalCode\": \"4000\",\r\n    \"unitOfSale\": \"400\",\r\n    \"deptNumber\": 2,\r\n    \"custom1\": \"c1\",\r\n    \"custom2\": \"c2\",\r\n    \"custom3\": \"c3\",\r\n    \"deletedFlag\": false,\r\n    \"inactiveFlag\": false,\r\n    \"salesPrice\": 300.0,\r\n    \"unitWeight\": 5.2,\r\n    \"taxCode\": 1,\r\n    \"qtyAllocated\": 0.0,\r\n    \"qtyInStock\": 5.0,\r\n    \"stockTakeDate\": null,\r\n    \"stockCat\": 1,\r\n    \"averageCostPrice\": 100.0,\r\n    \"location\": \"New Location\",\r\n    \"purchaseNominalCode\": \"5000\",\r\n    \"lastPurchasePrice\": 75.0,\r\n    \"webDetails\": \"New Description\"\r\n}"},"url":"{{url}}/api/product","description":"<h2 id=\"patch-update-product\">PATCH Update Product</h2>\n<ul>\n<li><p>Description: Updates a single product</p>\n</li>\n<li><p>Endpoint URL: <code>api/product</code></p>\n</li>\n<li><p>Method: <code>PATCH</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">stockCode // string, max 30 chars, required\ndescription // string , max 60 chars, optional\nitemType // int, max 3 chars, optional\nnominalCode // string, max 3 chars, optional\nunitOfSale // string, max 8 chars, optional\ndeptNumber // int, max 5 chars, optional\ndeletedFlag // bool, optional\ninactiveFlag // bool, optional\ncustom1 // string, max 30 chars, optional\ncustom2 // string, max 30 chars, optional\ncustom3 // string, max 30 chars, optional\nsalesPrice // double, max 30 chars, optional\nunitWeight // double, max 8 chars optional\ntax code // int, max 2 chars, optional\nqtyAllocated // double, max 8 chars, optional\nqtyInStock // double, max 8 chars, optional\npurchaseRef // string, max 8 chars, optional, supplier account number\nstockTakeDate // Date, format: dd/mm/yyyy, optional\nstockCat // int, max 5 chars optional\nsupplierPartNumber // string, max 30 chars, optional\naverageCostPrice // double, optional\nlastPurchasePrice  // double, optional\nlastDiscPurchasePrice // double, max 8 chars, optional\nlocation // string, max 16 chars, optional\npurchaseNominalCode // string, max 8 chars, optional\ncommodityCode // string, max 30 chars, optional\ncountryCodeOfOrigin // string, max 2 chars, optional\nbarcode // string, max 60 chars, optional\nwebDetails // string, max 60 chars, optional\nwebDescription // string, max 1023 chars, optional\nwebPublish // int, max 2 chars, optional\nreorderLevel // double, max 8 chars optional\nreorderQty // double, max 8 chars optional\ncomponent1Code // string, max 30 chars, optional\ncomponent1Qty // double, max 8 chars, optional\ncomponent2Code // string, max 30 chars, optional\ncomponent2Qty // double, max 8 chars, optional\ncomponent3Code // string, max 30 chars, optional\ncomponent3Qty // double, max 8 chars, optional\ncomponent4Code // string, max 30 chars, optional\ncomponent4Qty // double, max 8 chars, optional\ncomponent5Code // string, max 30 chars, optional\ncomponent5Qty // double, max 8 chars, optional\ncomponent6Code // string, max 30 chars, optional\ncomponent6Qty // double, max 8 chars, optional\ncomponent7Code // string, max 30 chars, optional\ncomponent7Qty // double, max 8 chars, optional\ncomponent8Code // string, max 30 chars, optional\ncomponent8Qty // double, max 8 chars, optional\ncomponent9Code // string, max 30 chars, optional\ncomponent9Qty // double, max 8 chars, optional\ncomponent10Code // string, max 30 chars, optional\ncomponent10Qty // double, max 8 chars, optional\nlinkLevel // int, max 2 chars, optional\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","product"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"af20a1b9-f780-4972-8afc-360a2a2896af","name":"Update Product","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"stockCode\": \"TP001\",\r\n    \"description\": \"Test Product One\",\r\n    \"itemType\": 1,\r\n    \"nominalCode\": \"4000\",\r\n    \"unitOfSale\": \"400\",\r\n    \"deptNumber\": 2,\r\n    \"custom1\": \"c1\",\r\n    \"custom2\": \"c2\",\r\n    \"custom3\": \"c3\",\r\n    \"deletedFlag\": false,\r\n    \"inactiveFlag\": false,\r\n    \"salesPrice\": 300.0,\r\n    \"unitWeight\": 5.2,\r\n    \"taxCode\": 1,\r\n    \"qtyAllocated\": 0.0,\r\n    \"qtyInStock\": 5.0,\r\n    \"stockTakeDate\": null,\r\n    \"stockCat\": 1,\r\n    \"averageCostPrice\": 100.0,\r\n    \"location\": \"New Location\",\r\n    \"purchaseNominalCode\": \"5000\",\r\n    \"lastPurchasePrice\": 75.0,\r\n    \"webDetails\": \"New Description\"\r\n}"},"url":"{{url}}/api/product"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:45:53 GMT"},{"key":"Content-Length","value":"61"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": \"TP001\",\n    \"message\": null\n}"}],"_postman_id":"ecdc549b-10ff-46e1-b6df-ac276a112e68"},{"name":"Read Product","id":"c4f3ede5-9216-4d80-8191-c47946e90250","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/product/{{stockCode}}","description":"<h2 id=\"get-product\">Get Product</h2>\n<ul>\n<li><p>Description: Fetches a single product. If wanting to get full list of products use - api/searchProduct.</p>\n</li>\n<li><p>Endpoint URL: <code>api/product/{stockCode}</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: stockCode</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","product","{{stockCode}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d353ab49-d927-44de-9522-f83a5077f675","name":"Read Product","originalRequest":{"method":"GET","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/product/{{stockCode}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 11 Nov 2025 10:13:26 GMT"},{"key":"Content-Length","value":"1395"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"stockCode\": \"BOARD001\",\n        \"description\": \"Whiteboard - Drywipe (900 x 1200)\",\n        \"itemType\": 0,\n        \"nominalCode\": \"4000\",\n        \"unitOfSale\": \"Each\",\n        \"deptNumber\": 1,\n        \"custom1\": \"Office Equipment\",\n        \"custom2\": \"Presentation Supplies\",\n        \"custom3\": \"Whiteboards\",\n        \"deletedFlag\": false,\n        \"inactiveFlag\": false,\n        \"salesPrice\": 20,\n        \"unitWeight\": 0,\n        \"taxCode\": 1,\n        \"qtyAllocated\": 0,\n        \"qtyInStock\": 4,\n        \"qtyOnOrder\": 0,\n        \"purchaseRef\": \"UNI001\",\n        \"stockTakeDate\": \"31/12/2013\",\n        \"stockCat\": 6,\n        \"supplierPartNumber\": \"U143\",\n        \"averageCostPrice\": 15,\n        \"location\": \"Warehouse\",\n        \"purchaseNominalCode\": \"5000\",\n        \"lastPurchasePrice\": 15,\n        \"lastDiscPurchasePrice\": 15,\n        \"commodityCode\": \"\",\n        \"intrastatCommodityCode\": null,\n        \"barcode\": \"\",\n        \"webDetails\": \"Magnetic steel drywipe whiteboards.\\r\\n\\r\\nComplete with marker tray.\\r\\n\\r\\nCompatible with most rail systems\\r\\n\\r\\nDimensions: 900 x 1200\",\n        \"webDescription\": \"Whiteboard - Drywipe (900 x 1200)\",\n        \"webPublish\": 1,\n        \"assemblyLevel\": 0,\n        \"linkLevel\": 0,\n        \"countryCodeOfOrigin\": \"GB\",\n        \"component1Code\": \"\",\n        \"component1Qty\": 0,\n        \"component2Code\": \"\",\n        \"component2Qty\": 0,\n        \"component3Code\": \"\",\n        \"component3Qty\": 0,\n        \"component4Code\": \"\",\n        \"component4Qty\": 0,\n        \"component5Code\": \"\",\n        \"component5Qty\": 0,\n        \"component6Code\": \"\",\n        \"component6Qty\": 0,\n        \"component7Code\": \"\",\n        \"component7Qty\": 0,\n        \"component8Code\": \"\",\n        \"component8Qty\": 0,\n        \"component9Code\": \"\",\n        \"component9Qty\": 0,\n        \"component10Code\": \"\",\n        \"component10Qty\": 0\n    },\n    \"message\": null\n}"}],"_postman_id":"c4f3ede5-9216-4d80-8191-c47946e90250"},{"name":"Search Product","id":"1b39b035-0fee-4f1d-8d2e-50a76b6d09c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"RECORD_MODIFY_DATE\",\n        \"type\": \"gte\",\n        \"value\": \"10/03/2026\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchProduct","description":"<h2 id=\"search-products\">Search Products</h2>\n<ul>\n<li><p>Description: Searches the STOCK table in Sage.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchProduct</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchProduct"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ea940445-4862-4232-a418-ca441051ed5d","name":"Search Product","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"RECORD_MODIFY_DATE\",\n        \"type\": \"gte\",\n        \"value\": \"10/03/2026\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchProduct"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"no-cache"},{"key":"pragma","value":"no-cache"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"expires","value":"-1"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"date","value":"Tue, 10 Mar 2026 15:44:55 GMT"},{"key":"content-length","value":"4049"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"stockCode\": \"BOARD001\",\n            \"description\": \"Whiteboard - Drywipe (900 x 1200)\",\n            \"salesNominalCode\": \"4000\",\n            \"taxCode\": \"T1\",\n            \"unitOfSale\": \"Each\",\n            \"qtyInStock\": 10.3,\n            \"qtyOnOrder\": 2,\n            \"qtyAllocated\": 0,\n            \"salesPrice\": 20,\n            \"supplierPartNumber\": \"U143\",\n            \"purchaseNominalCode\": \"5000\",\n            \"recordCreateDate\": \"27/04/2010 17:16:57\",\n            \"recordModifyDate\": \"10/03/2026 15:44:22\",\n            \"supplierRef\": \"UNI001\",\n            \"itemType\": 0,\n            \"webCategoryA\": \"Office Equipment\",\n            \"webCategoryB\": \"Presentation Supplies\",\n            \"webCategoryC\": \"Whiteboards\",\n            \"barcode\": \"\",\n            \"instrastatCommCode\": \"12345889\",\n            \"instrastatImportDutyCode\": \"67\",\n            \"commodityCode\": \"\",\n            \"reorderLevel\": 1,\n            \"reorderQty\": 2,\n            \"webPublish\": 1,\n            \"webSpecialOffer\": 0,\n            \"webDetails\": \"Magnetic steel drywipe whiteboard.\\r\\n\\r\\nComplete with marker tray.\\r\\n\\r\\nCompatible with most rail systems\\r\\n\\r\\nDimensions: 900 x 1200\",\n            \"webDescription\": \"Whiteboard - Drywipe (900 x 1200)\",\n            \"webImage\": \"board001.jpg\",\n            \"inactiveFlag\": 0,\n            \"unitWeight\": 0,\n            \"deptNumber\": 1,\n            \"stockCat\": 6,\n            \"stockCatName\": \"Presentation Supplies\",\n            \"qtyLastStockTake\": 2,\n            \"stockTakeDate\": \"31/12/2013 00:00:00\",\n            \"location\": \"Warehouse\",\n            \"assemblyLevel\": 0,\n            \"lastCostPrice\": 15,\n            \"lastDiscPurchasePrice\": 15,\n            \"countryCodeOfOrigin\": \"GB\",\n            \"discALevel1Rate\": 0,\n            \"discALevel2Rate\": 0,\n            \"discALevel3Rate\": 0,\n            \"discALevel4Rate\": 0,\n            \"discALevel5Rate\": 0,\n            \"discALevel6Rate\": 0,\n            \"discALevel7Rate\": 0,\n            \"discALevel8Rate\": 0,\n            \"discALevel9Rate\": 0,\n            \"discALevel10Rate\": 0,\n            \"discALevel1Qty\": 0,\n            \"discALevel2Qty\": 0,\n            \"discALevel3Qty\": 0,\n            \"discALevel4Qty\": 0,\n            \"discALevel5Qty\": 0,\n            \"discALevel6Qty\": 0,\n            \"discALevel7Qty\": 0,\n            \"discALevel8Qty\": 0,\n            \"discALevel9Qty\": 0,\n            \"discALevel10Qty\": 0,\n            \"component1Code\": \"\",\n            \"component2Code\": \"\",\n            \"component3Code\": \"\",\n            \"component4Code\": \"\",\n            \"component5Code\": \"\",\n            \"component6Code\": \"\",\n            \"component7Code\": \"\",\n            \"component8Code\": \"\",\n            \"component9Code\": \"\",\n            \"component10Code\": \"\",\n            \"component1Qty\": 0,\n            \"component2Qty\": 0,\n            \"component3Qty\": 0,\n            \"component4Qty\": 0,\n            \"component5Qty\": 0,\n            \"component6Qty\": 0,\n            \"component7Qty\": 0,\n            \"component8Qty\": 0,\n            \"component9Qty\": 0,\n            \"component10Qty\": 0\n        },\n        {\n            \"stockCode\": \"BOOKS001\",\n            \"description\": \"A4 Ledger Book - 5 Column\",\n            \"salesNominalCode\": \"4000\",\n            \"taxCode\": \"T1\",\n            \"unitOfSale\": \"Each\",\n            \"qtyInStock\": 144,\n            \"qtyOnOrder\": 39,\n            \"qtyAllocated\": 0,\n            \"salesPrice\": 7.99,\n            \"supplierPartNumber\": \"C10009\",\n            \"purchaseNominalCode\": \"5000\",\n            \"recordCreateDate\": \"27/04/2010 17:16:57\",\n            \"recordModifyDate\": \"10/03/2026 14:35:46\",\n            \"supplierRef\": \"CON001\",\n            \"itemType\": 0,\n            \"webCategoryA\": \"Office Supplies\",\n            \"webCategoryB\": \"Books\",\n            \"webCategoryC\": \"Ledger Books\",\n            \"barcode\": \"\",\n            \"instrastatCommCode\": \"\",\n            \"instrastatImportDutyCode\": \"\",\n            \"commodityCode\": \"\",\n            \"reorderLevel\": 20,\n            \"reorderQty\": 40,\n            \"webPublish\": 1,\n            \"webSpecialOffer\": 0,\n            \"webDetails\": \"Bound Accounts ledger book. 100 pages of quality bond paper.\\r\\n\\r\\nEach page contains 5 colums and 38 lines.\\r\\n\\r\\nAvailable with blue or red cover.\",\n            \"webDescription\": \"A4 Ledger Book - 5 Column\",\n            \"webImage\": \"books001.jpg\",\n            \"inactiveFlag\": 0,\n            \"unitWeight\": 0,\n            \"deptNumber\": 1,\n            \"stockCat\": 2,\n            \"stockCatName\": \"Office Supplies\",\n            \"qtyLastStockTake\": 40,\n            \"stockTakeDate\": \"31/12/2013 00:00:00\",\n            \"location\": \"Warehouse\",\n            \"assemblyLevel\": 0,\n            \"lastCostPrice\": 441.1,\n            \"lastDiscPurchasePrice\": 441.1,\n            \"countryCodeOfOrigin\": \"GB\",\n            \"discALevel1Rate\": 5,\n            \"discALevel2Rate\": 15,\n            \"discALevel3Rate\": 20,\n            \"discALevel4Rate\": 25,\n            \"discALevel5Rate\": 0,\n            \"discALevel6Rate\": 0,\n            \"discALevel7Rate\": 0,\n            \"discALevel8Rate\": 0,\n            \"discALevel9Rate\": 0,\n            \"discALevel10Rate\": 0,\n            \"discALevel1Qty\": 1,\n            \"discALevel2Qty\": 10,\n            \"discALevel3Qty\": 30,\n            \"discALevel4Qty\": 100,\n            \"discALevel5Qty\": 0,\n            \"discALevel6Qty\": 0,\n            \"discALevel7Qty\": 0,\n            \"discALevel8Qty\": 0,\n            \"discALevel9Qty\": 0,\n            \"discALevel10Qty\": 0,\n            \"component1Code\": \"\",\n            \"component2Code\": \"\",\n            \"component3Code\": \"\",\n            \"component4Code\": \"\",\n            \"component5Code\": \"\",\n            \"component6Code\": \"\",\n            \"component7Code\": \"\",\n            \"component8Code\": \"\",\n            \"component9Code\": \"\",\n            \"component10Code\": \"\",\n            \"component1Qty\": 0,\n            \"component2Qty\": 0,\n            \"component3Qty\": 0,\n            \"component4Qty\": 0,\n            \"component5Qty\": 0,\n            \"component6Qty\": 0,\n            \"component7Qty\": 0,\n            \"component8Qty\": 0,\n            \"component9Qty\": 0,\n            \"component10Qty\": 0\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"1b39b035-0fee-4f1d-8d2e-50a76b6d09c0"},{"name":"Read Stock Categories","id":"bd724ec2-3092-4216-924f-27f867fc863e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/stockCat","description":"<h2 id=\"stock-categories\">Stock Categories</h2>\n<ul>\n<li><p>Description: Returns List Of Stock Categories.</p>\n</li>\n<li><p>Endpoint URL: <code>api/stockCat</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","stockCat"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2a3fbed9-07c3-4e33-9ade-a5f9e29421f6","name":"Read Stock Categories","originalRequest":{"method":"GET","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/stockCat"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:37:05 GMT"},{"key":"Content-Length","value":"21121"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": 1,\n            \"name\": \"Paper Products\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"Office Supplies\"\n        },\n        {\n            \"id\": 3,\n            \"name\": \"Envelopes and Mailing\"\n        },\n        {\n            \"id\": 4,\n            \"name\": \"Writing Equipment\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Organising and Filing\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Presentation Supplies\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Business Machines\"\n        },\n        {\n            \"id\": 8,\n            \"name\": \"Computer Accessories\"\n        },\n        {\n            \"id\": 9,\n            \"name\": \"Telecomunications\"\n        },\n        {\n            \"id\": 10,\n            \"name\": \"Computer Hardware\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 15,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 16,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 17,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 18,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 19,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 20,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 21,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 22,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 23,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 24,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 25,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 26,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 27,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 28,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 29,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 30,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 31,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 32,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 33,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 34,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 35,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 36,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 37,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 38,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 39,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 40,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 41,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 42,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 43,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 44,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 45,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 46,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 47,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 48,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 49,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 50,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 51,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 52,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 53,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 54,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 55,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 56,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 57,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 58,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 59,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 60,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 61,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 62,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 63,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 64,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 65,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 66,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 67,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 68,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 69,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 70,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 71,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 72,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 73,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 74,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 75,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 76,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 77,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 78,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 79,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 80,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 81,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 82,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 83,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 84,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 85,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 86,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 87,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 88,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 89,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 90,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 91,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 92,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 93,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 94,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 95,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 96,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 97,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 98,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 99,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 100,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 101,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 102,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 103,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 104,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 105,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 106,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 107,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 108,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 109,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 110,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 111,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 112,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 113,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 114,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 115,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 116,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 117,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 118,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 119,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 120,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 121,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 122,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 123,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 124,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 125,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 126,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 127,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 128,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 129,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 130,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 131,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 132,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 133,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 134,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 135,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 136,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 137,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 138,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 139,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 140,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 141,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 142,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 143,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 144,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 145,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 146,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 147,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 148,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 149,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 150,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 151,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 152,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 153,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 154,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 155,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 156,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 157,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 158,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 159,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 160,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 161,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 162,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 163,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 164,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 165,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 166,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 167,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 168,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 169,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 170,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 171,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 172,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 173,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 174,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 175,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 176,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 177,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 178,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 179,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 180,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 181,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 182,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 183,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 184,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 185,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 186,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 187,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 188,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 189,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 190,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 191,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 192,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 193,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 194,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 195,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 196,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 197,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 198,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 199,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 200,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 201,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 202,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 203,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 204,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 205,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 206,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 207,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 208,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 209,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 210,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 211,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 212,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 213,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 214,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 215,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 216,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 217,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 218,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 219,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 220,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 221,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 222,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 223,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 224,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 225,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 226,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 227,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 228,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 229,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 230,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 231,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 232,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 233,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 234,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 235,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 236,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 237,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 238,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 239,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 240,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 241,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 242,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 243,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 244,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 245,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 246,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 247,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 248,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 249,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 250,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 251,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 252,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 253,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 254,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 255,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 256,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 257,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 258,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 259,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 260,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 261,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 262,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 263,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 264,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 265,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 266,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 267,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 268,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 269,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 270,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 271,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 272,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 273,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 274,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 275,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 276,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 277,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 278,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 279,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 280,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 281,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 282,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 283,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 284,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 285,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 286,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 287,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 288,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 289,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 290,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 291,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 292,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 293,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 294,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 295,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 296,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 297,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 298,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 299,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 300,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 301,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 302,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 303,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 304,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 305,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 306,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 307,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 308,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 309,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 310,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 311,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 312,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 313,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 314,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 315,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 316,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 317,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 318,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 319,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 320,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 321,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 322,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 323,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 324,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 325,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 326,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 327,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 328,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 329,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 330,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 331,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 332,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 333,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 334,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 335,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 336,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 337,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 338,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 339,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 340,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 341,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 342,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 343,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 344,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 345,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 346,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 347,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 348,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 349,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 350,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 351,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 352,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 353,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 354,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 355,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 356,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 357,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 358,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 359,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 360,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 361,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 362,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 363,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 364,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 365,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 366,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 367,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 368,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 369,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 370,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 371,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 372,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 373,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 374,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 375,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 376,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 377,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 378,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 379,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 380,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 381,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 382,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 383,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 384,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 385,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 386,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 387,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 388,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 389,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 390,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 391,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 392,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 393,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 394,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 395,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 396,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 397,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 398,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 399,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 400,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 401,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 402,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 403,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 404,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 405,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 406,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 407,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 408,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 409,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 410,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 411,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 412,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 413,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 414,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 415,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 416,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 417,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 418,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 419,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 420,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 421,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 422,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 423,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 424,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 425,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 426,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 427,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 428,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 429,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 430,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 431,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 432,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 433,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 434,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 435,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 436,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 437,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 438,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 439,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 440,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 441,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 442,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 443,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 444,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 445,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 446,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 447,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 448,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 449,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 450,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 451,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 452,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 453,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 454,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 455,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 456,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 457,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 458,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 459,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 460,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 461,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 462,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 463,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 464,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 465,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 466,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 467,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 468,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 469,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 470,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 471,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 472,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 473,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 474,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 475,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 476,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 477,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 478,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 479,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 480,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 481,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 482,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 483,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 484,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 485,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 486,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 487,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 488,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 489,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 490,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 491,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 492,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 493,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 494,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 495,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 496,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 497,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 498,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 499,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 500,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 501,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 502,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 503,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 504,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 505,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 506,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 507,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 508,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 509,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 510,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 511,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 512,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 513,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 514,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 515,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 516,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 517,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 518,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 519,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 520,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 521,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 522,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 523,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 524,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 525,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 526,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 527,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 528,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 529,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 530,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 531,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 532,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 533,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 534,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 535,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 536,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 537,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 538,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 539,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 540,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 541,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 542,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 543,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 544,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 545,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 546,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 547,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 548,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 549,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 550,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 551,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 552,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 553,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 554,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 555,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 556,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 557,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 558,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 559,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 560,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 561,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 562,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 563,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 564,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 565,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 566,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 567,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 568,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 569,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 570,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 571,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 572,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 573,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 574,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 575,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 576,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 577,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 578,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 579,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 580,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 581,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 582,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 583,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 584,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 585,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 586,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 587,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 588,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 589,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 590,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 591,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 592,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 593,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 594,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 595,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 596,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 597,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 598,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 599,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 600,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 601,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 602,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 603,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 604,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 605,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 606,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 607,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 608,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 609,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 610,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 611,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 612,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 613,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 614,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 615,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 616,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 617,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 618,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 619,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 620,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 621,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 622,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 623,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 624,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 625,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 626,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 627,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 628,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 629,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 630,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 631,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 632,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 633,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 634,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 635,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 636,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 637,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 638,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 639,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 640,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 641,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 642,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 643,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 644,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 645,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 646,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 647,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 648,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 649,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 650,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 651,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 652,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 653,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 654,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 655,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 656,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 657,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 658,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 659,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 660,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 661,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 662,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 663,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 664,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 665,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 666,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 667,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 668,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 669,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 670,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 671,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 672,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 673,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 674,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 675,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 676,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 677,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 678,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 679,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 680,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 681,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 682,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 683,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 684,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 685,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 686,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 687,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 688,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 689,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 690,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 691,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 692,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 693,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 694,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 695,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 696,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 697,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 698,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 699,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 700,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 701,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 702,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 703,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 704,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 705,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 706,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 707,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 708,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 709,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 710,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 711,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 712,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 713,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 714,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 715,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 716,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 717,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 718,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 719,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 720,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 721,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 722,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 723,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 724,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 725,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 726,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 727,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 728,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 729,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 730,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 731,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 732,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 733,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 734,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 735,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 736,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 737,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 738,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 739,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 740,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 741,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 742,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 743,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 744,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 745,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 746,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 747,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 748,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 749,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 750,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 751,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 752,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 753,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 754,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 755,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 756,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 757,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 758,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 759,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 760,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 761,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 762,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 763,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 764,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 765,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 766,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 767,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 768,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 769,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 770,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 771,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 772,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 773,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 774,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 775,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 776,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 777,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 778,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 779,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 780,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 781,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 782,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 783,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 784,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 785,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 786,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 787,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 788,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 789,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 790,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 791,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 792,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 793,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 794,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 795,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 796,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 797,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 798,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 799,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 800,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 801,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 802,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 803,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 804,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 805,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 806,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 807,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 808,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 809,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 810,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 811,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 812,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 813,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 814,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 815,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 816,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 817,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 818,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 819,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 820,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 821,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 822,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 823,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 824,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 825,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 826,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 827,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 828,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 829,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 830,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 831,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 832,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 833,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 834,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 835,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 836,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 837,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 838,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 839,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 840,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 841,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 842,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 843,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 844,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 845,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 846,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 847,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 848,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 849,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 850,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 851,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 852,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 853,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 854,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 855,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 856,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 857,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 858,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 859,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 860,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 861,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 862,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 863,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 864,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 865,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 866,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 867,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 868,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 869,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 870,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 871,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 872,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 873,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 874,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 875,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 876,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 877,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 878,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 879,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 880,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 881,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 882,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 883,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 884,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 885,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 886,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 887,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 888,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 889,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 890,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 891,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 892,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 893,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 894,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 895,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 896,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 897,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 898,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 899,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 900,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 901,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 902,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 903,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 904,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 905,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 906,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 907,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 908,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 909,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 910,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 911,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 912,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 913,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 914,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 915,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 916,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 917,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 918,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 919,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 920,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 921,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 922,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 923,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 924,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 925,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 926,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 927,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 928,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 929,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 930,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 931,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 932,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 933,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 934,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 935,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 936,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 937,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 938,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 939,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 940,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 941,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 942,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 943,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 944,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 945,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 946,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 947,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 948,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 949,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 950,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 951,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 952,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 953,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 954,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 955,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 956,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 957,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 958,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 959,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 960,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 961,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 962,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 963,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 964,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 965,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 966,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 967,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 968,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 969,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 970,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 971,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 972,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 973,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 974,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 975,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 976,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 977,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 978,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 979,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 980,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 981,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 982,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 983,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 984,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 985,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 986,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 987,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 988,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 989,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 990,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 991,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 992,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 993,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 994,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 995,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 996,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 997,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 998,\n            \"name\": \"\"\n        },\n        {\n            \"id\": 999,\n            \"name\": \"\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"bd724ec2-3092-4216-924f-27f867fc863e"},{"name":"Create Product Image","id":"d4dd8341-8972-43c9-8da8-ab75fa04ca1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"stockCode","value":"{{stockCode}}","type":"text","uuid":"71e67422-c87c-4bdb-8ded-423e896641c3"},{"key":"image","type":"file","uuid":"2eedc7aa-6b96-4a3d-9b4b-496f176951f6","value":null}]},"url":"{{url}}/api/productImage","description":"<h2 id=\"post-create-product-web-image\">POST Create Product Web Image</h2>\n<ul>\n<li><p>Description: Adds product image against product</p>\n</li>\n<li><p>Endpoint URL: <code>api/productImage</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">stockCode // String, required\nimage // Image, required, see notes\n\n</code></pre>\n<ul>\n<li>Notes:</li>\n</ul>\n<p>Has a \"multipart\" body to allow for passing an image (not a standard JSON)</p>\n<p>Image formats .gif and .jpg works best because you can preview them in the Sage interface. You can still use other image formats, but they won't display in the Sage UI, you must open them when you edit the product in Sage.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","productImage"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"a27247d2-bba5-443c-8637-d5c9a7f278df","name":"Create Product Image","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"stockCode","value":"HYPEREXT","type":"text","uuid":"71e67422-c87c-4bdb-8ded-423e896641c3"},{"key":"image","type":"file","uuid":"2eedc7aa-6b96-4a3d-9b4b-496f176951f6","src":"/C:/Users/hyper/Pictures/HYPEREXT.jpg"}]},"url":"{{url}}/api/productImage"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"no-cache"},{"key":"pragma","value":"no-cache"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"expires","value":"-1"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"date","value":"Wed, 15 Apr 2026 08:17:01 GMT"},{"key":"content-length","value":"64"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": \"HYPEREXT\",\n    \"message\": null\n}"}],"_postman_id":"d4dd8341-8972-43c9-8da8-ab75fa04ca1d"},{"name":"Read Product Image","id":"57d1d6bf-37fd-4027-9137-d425a32ed304","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/product/{{stockCode}}/webImage","description":"<h2 id=\"get-product-web-image\">Get Product Web Image</h2>\n<ul>\n<li><p>Description: Gets base64 encoded string of image stored in Sage for referenced stock item (product)</p>\n</li>\n<li><p>Endpoint URL: <code>api/product/{stockCode}/webImage</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters:stockCode</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","product","{{stockCode}}","webImage"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d833c908-7883-412c-8ef8-7d802f246942","name":"Read Product Image","originalRequest":{"method":"GET","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/product/{{stockCode}}/webImage"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:41:27 GMT"},{"key":"Content-Length","value":"72"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"code\": 500,\n    \"response\": null,\n    \"message\": \"Image not found\"\n}"}],"_postman_id":"57d1d6bf-37fd-4027-9137-d425a32ed304"},{"name":"Stock Adjustments","id":"63cee38c-40dc-4c91-a1a7-0e0426dff2fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"stockCode\": \"TP001\",\r\n    \"quantity\": 99,\r\n    \"type\": 1,\r\n    \"date\": \"03/07/2024\",\r\n    \"costPrice\": 100,\r\n    \"reference\": \"030724\",\r\n    \"details\": \"stock adjustment in\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/stock","description":"<h2 id=\"post-stock-adjustments\">Post Stock Adjustments</h2>\n<ul>\n<li><p>Description: Adjusts stock</p>\n</li>\n<li><p>Endpoint URL: <code>api/stock</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">stockCode // string, max 30 chars, required\nquantity // Double, max 8 chars, required\ntype // Int, max 1 chars, required 1 = adjustment in 2 = adjustment out\ndate // Date,  dd/mm/yyyy, required\ncostPrice // Double, max 26 chars, optional\nreference //  string, max 30 chars, optional\ndetails //  string, max 60 chars, optional\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","stock"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bb820804-1e9e-4c9b-a12e-5623463e206a","name":"Stock Adjustments","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"stockCode\": \"TP001\",\r\n    \"quantity\": 99,\r\n    \"type\": 1,\r\n    \"date\": \"03/07/2024\",\r\n    \"costPrice\": 100,\r\n    \"reference\": \"030724\",\r\n    \"details\": \"stock adjustment in\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/stock"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:47:08 GMT"},{"key":"Content-Length","value":"58"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": true,\n    \"message\": null\n}"}],"_postman_id":"63cee38c-40dc-4c91-a1a7-0e0426dff2fd"},{"name":"Read Stock Movements","id":"bbeb62f4-2a8b-48e0-845a-7faf6b4b867e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"BRATTSON\",\r\n    \"amountPaid\": 0.0,\r\n    \"bankCode\": \"\",\r\n    \"currency\": 1,\r\n    \"type\": \"SI\",\r\n    \"date\": \"31/03/2021 00:00:00\",\r\n    \"details\": \"Annual Membership Fee\",\r\n    \"invRef\": \"7923\",\r\n    \"netAmount\": 775.0,\r\n    \"taxAmount\": 155.0,\r\n    \"grossAmount\": 930.0,\r\n    \"foreignNetAmount\": 775.0,\r\n    \"foreignTaxAmount\": 155.0,\r\n    \"foreignGrossAmount\": 930.0,\r\n    \"tranNumber\": 35139,\r\n    \"userName\": \"SDO_USER_0\",\r\n    \"outstanding\": 930.0,\r\n    \"bankAmount\": -930.0,\r\n    \"bankFlag\": \"-\",\r\n    \"bankName\": \"\",\r\n    \"dateBankReconciled\": \"\",\r\n    \"dateEntered\": \"31/03/2021 00:00:00\",\r\n    \"deletedFlag\": 0,\r\n    \"disputed\": \"0\",\r\n    \"dueDate\": \"30/04/2021 00:00:00\",\r\n    \"foreignAmountPaid\": 0.0,\r\n    \"foreignBankAmount\": -930.0,\r\n    \"foreignOutstanding\": 930.0,\r\n    \"foreignRate\": 1.0,\r\n    \"headerNumber\": 13584,\r\n    \"invRefNumeric\": 7923,\r\n    \"itemCount\": 2,\r\n    \"paidFlag\": \"N\",\r\n    \"paidStatus\": \"*\",\r\n    \"payment\": 0.0,\r\n    \"recordCreateDate\": \"28/03/2041 00:00:00\",\r\n    \"recordModifyDate\": \"31/03/2021 16:03:22\",\r\n    \"salesPurchaseRef\": \"BRATTSON\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/stock/{{stockCode}}","description":"<h2 id=\"read-stock-movements\">Read Stock Movements</h2>\n<ul>\n<li><p>Description: Reads stock movements</p>\n</li>\n<li><p>Endpoint URL: <code>api/stock/{{ID}}</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: stockCode</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","stock","{{stockCode}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"27927aa2-6558-4015-9968-33a8d0926dfd","name":"Read Stock Movements","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"BRATTSON\",\r\n    \"amountPaid\": 0.0,\r\n    \"bankCode\": \"\",\r\n    \"currency\": 1,\r\n    \"type\": \"SI\",\r\n    \"date\": \"31/03/2021 00:00:00\",\r\n    \"details\": \"Annual Membership Fee\",\r\n    \"invRef\": \"7923\",\r\n    \"netAmount\": 775.0,\r\n    \"taxAmount\": 155.0,\r\n    \"grossAmount\": 930.0,\r\n    \"foreignNetAmount\": 775.0,\r\n    \"foreignTaxAmount\": 155.0,\r\n    \"foreignGrossAmount\": 930.0,\r\n    \"tranNumber\": 35139,\r\n    \"userName\": \"SDO_USER_0\",\r\n    \"outstanding\": 930.0,\r\n    \"bankAmount\": -930.0,\r\n    \"bankFlag\": \"-\",\r\n    \"bankName\": \"\",\r\n    \"dateBankReconciled\": \"\",\r\n    \"dateEntered\": \"31/03/2021 00:00:00\",\r\n    \"deletedFlag\": 0,\r\n    \"disputed\": \"0\",\r\n    \"dueDate\": \"30/04/2021 00:00:00\",\r\n    \"foreignAmountPaid\": 0.0,\r\n    \"foreignBankAmount\": -930.0,\r\n    \"foreignOutstanding\": 930.0,\r\n    \"foreignRate\": 1.0,\r\n    \"headerNumber\": 13584,\r\n    \"invRefNumeric\": 7923,\r\n    \"itemCount\": 2,\r\n    \"paidFlag\": \"N\",\r\n    \"paidStatus\": \"*\",\r\n    \"payment\": 0.0,\r\n    \"recordCreateDate\": \"28/03/2041 00:00:00\",\r\n    \"recordModifyDate\": \"31/03/2021 16:03:22\",\r\n    \"salesPurchaseRef\": \"BRATTSON\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/stock/{{stockCode}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:47:52 GMT"},{"key":"Content-Length","value":"1555"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"stockCode\": \"CALC004\",\n            \"date\": \"31/12/2018 00:00:00\",\n            \"type\": 1,\n            \"costPrice\": 4.2,\n            \"quantity\": 98,\n            \"reference\": \"STK TAKE\",\n            \"details\": \"Calculator - Printing Rolls\"\n        },\n        {\n            \"stockCode\": \"CALC004\",\n            \"date\": \"02/01/2019 00:00:00\",\n            \"type\": 4,\n            \"costPrice\": 4.2,\n            \"quantity\": 15,\n            \"reference\": \"1\",\n            \"details\": \"Goods Out\"\n        },\n        {\n            \"stockCode\": \"CALC004\",\n            \"date\": \"07/01/2019 00:00:00\",\n            \"type\": 4,\n            \"costPrice\": 4.2,\n            \"quantity\": 11,\n            \"reference\": \"2\",\n            \"details\": \"Goods Out\"\n        },\n        {\n            \"stockCode\": \"CALC004\",\n            \"date\": \"28/02/2019 00:00:00\",\n            \"type\": 3,\n            \"costPrice\": 3.78,\n            \"quantity\": 50,\n            \"reference\": \"10\",\n            \"details\": \"Goods In\"\n        },\n        {\n            \"stockCode\": \"CALC004\",\n            \"date\": \"02/02/2019 00:00:00\",\n            \"type\": 4,\n            \"costPrice\": 4.2,\n            \"quantity\": 7,\n            \"reference\": \"18\",\n            \"details\": \"Goods Out\"\n        },\n        {\n            \"stockCode\": \"CALC004\",\n            \"date\": \"07/02/2019 00:00:00\",\n            \"type\": 4,\n            \"costPrice\": 4.2,\n            \"quantity\": 11,\n            \"reference\": \"19\",\n            \"details\": \"Goods Out\"\n        },\n        {\n            \"stockCode\": \"CALC004\",\n            \"date\": \"02/03/2019 00:00:00\",\n            \"type\": 4,\n            \"costPrice\": 4.2,\n            \"quantity\": 10,\n            \"reference\": \"35\",\n            \"details\": \"Goods Out\"\n        },\n        {\n            \"stockCode\": \"CALC004\",\n            \"date\": \"07/03/2019 00:00:00\",\n            \"type\": 4,\n            \"costPrice\": 4.2,\n            \"quantity\": 11,\n            \"reference\": \"36\",\n            \"details\": \"Goods Out\"\n        },\n        {\n            \"stockCode\": \"CALC004\",\n            \"date\": \"01/04/2019 00:00:00\",\n            \"type\": 4,\n            \"costPrice\": 4.2,\n            \"quantity\": 20,\n            \"reference\": \"51\",\n            \"details\": \"Goods Out\"\n        },\n        {\n            \"stockCode\": \"CALC004\",\n            \"date\": \"03/04/2019 00:00:00\",\n            \"type\": 4,\n            \"costPrice\": 4.2,\n            \"quantity\": 11,\n            \"reference\": \"52\",\n            \"details\": \"Goods Out\"\n        },\n        {\n            \"stockCode\": \"CALC004\",\n            \"date\": \"27/04/2019 00:00:00\",\n            \"type\": 3,\n            \"costPrice\": 3.78,\n            \"quantity\": 100,\n            \"reference\": \"33\",\n            \"details\": \"Goods In\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"bbeb62f4-2a8b-48e0-845a-7faf6b4b867e"},{"name":"Search Stock Movements","id":"4b0ba970-35d4-4951-bb72-51dae179a469","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"STOCK_CODE\",\n        \"type\": \"eq\",\n        \"value\": \"BOARD001\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchStock","description":"<h2 id=\"search-products\">Search Products</h2>\n<ul>\n<li><p>Description: Searches Stock Movements.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchStock</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchStock"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"41f4d7df-c977-487d-a7c1-10faa019557c","name":"Search Stock Movements","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"STOCK_CODE\",\n        \"type\": \"eq\",\n        \"value\": \"BOARD001\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchStock"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 31 Oct 2024 10:04:23 GMT"},{"key":"Content-Length","value":"1192"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"tranNumber\": 1,\n            \"stockCode\": \"BOARD001\",\n            \"date\": \"31/12/2020 00:00:00\",\n            \"type\": \"AI\",\n            \"costPrice\": 15,\n            \"quantity\": 2,\n            \"reference\": \"STK TAKE\",\n            \"details\": \"Whiteboard - Drywipe (900 x 1200)\"\n        },\n        {\n            \"tranNumber\": 145,\n            \"stockCode\": \"BOARD001\",\n            \"date\": \"02/01/2021 00:00:00\",\n            \"type\": \"GO\",\n            \"costPrice\": 15,\n            \"quantity\": -4,\n            \"reference\": \"1\",\n            \"details\": \"Goods Out\"\n        },\n        {\n            \"tranNumber\": 348,\n            \"stockCode\": \"BOARD001\",\n            \"date\": \"02/02/2021 00:00:00\",\n            \"type\": \"GO\",\n            \"costPrice\": 15,\n            \"quantity\": -3,\n            \"reference\": \"18\",\n            \"details\": \"Goods Out\"\n        },\n        {\n            \"tranNumber\": 442,\n            \"stockCode\": \"BOARD001\",\n            \"date\": \"02/03/2021 00:00:00\",\n            \"type\": \"GO\",\n            \"costPrice\": 15,\n            \"quantity\": -3,\n            \"reference\": \"35\",\n            \"details\": \"Goods Out\"\n        },\n        {\n            \"tranNumber\": 628,\n            \"stockCode\": \"BOARD001\",\n            \"date\": \"05/04/2021 00:00:00\",\n            \"type\": \"GI\",\n            \"costPrice\": 13.2,\n            \"quantity\": 10,\n            \"reference\": \"23\",\n            \"details\": \"Goods In\"\n        },\n        {\n            \"tranNumber\": 753,\n            \"stockCode\": \"BOARD001\",\n            \"date\": \"01/04/2021 00:00:00\",\n            \"type\": \"GO\",\n            \"costPrice\": 14.280000000000001,\n            \"quantity\": -5,\n            \"reference\": \"51\",\n            \"details\": \"Goods Out\"\n        },\n        {\n            \"tranNumber\": 873,\n            \"stockCode\": \"BOARD001\",\n            \"date\": \"27/04/2021 00:00:00\",\n            \"type\": \"GI\",\n            \"costPrice\": 13.2,\n            \"quantity\": 8,\n            \"reference\": \"35\",\n            \"details\": \"Goods In\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"4b0ba970-35d4-4951-bb72-51dae179a469"}],"id":"8bdcebd0-bf35-42c3-931f-ad69726de62a","_postman_id":"8bdcebd0-bf35-42c3-931f-ad69726de62a","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}},{"name":"Pricing","item":[{"name":"Read Customer Price Lists","id":"e16b4bcd-f8bf-4a97-9cb2-11a8802b69c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/priceList/{{customer}}","description":"<h2 id=\"get-customer-price-lists\">Get Customer Price Lists</h2>\n<ul>\n<li><p>Description: Fetches price lists single customer.</p>\n</li>\n<li><p>Endpoint URL: <code>api/priceList/{accountRef}</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: accountRef</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","priceList","{{customer}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"67e9761c-8e5e-4ee4-bc4d-0b89f0170f6a","name":"Read Customer Price Lists","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/priceList/{{customer}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:49:26 GMT"},{"key":"Content-Length","value":"30811"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"currency\": 1,\n        \"hasStaticPrices\": 0,\n        \"lastUpdated\": null,\n        \"name\": \"Trade Price List A\",\n        \"recordCreateDate\": \"31/05/2013 15:39:25\",\n        \"recordDeleted\": false,\n        \"recordModifyDate\": \"21/08/2018 18:18:50\",\n        \"reference\": \"TRADEA\",\n        \"type\": \"P\",\n        \"prices\": [\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"BOARD001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"BOARD002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"BOOKS001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"BOOKS002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"BOOKS003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"CALC001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"CALC002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"CALC003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"CALC004\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"CAS001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"CAS002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"CAS003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"CDR001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"CDR002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"CDR003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"COR001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"DISK001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"DISK002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"ENV001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"ENV002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"ENV003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"ENV004\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"FAX001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"FAX002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"FAX003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"FIL001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"FIL002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"FLIP001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"FLIP002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"HAR001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"HAR002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"HAR003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"KEY001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"LABELS001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"LABELS002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"LAM001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"LAM002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MAIL001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MEM001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MEM002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MEM003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MEM004\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MEM005\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MEM006\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MON001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MON002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MON003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MOTH001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MOTH002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MOTH003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MOUSE001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MOUSE002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MOUSE003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"MOUSE004\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PAPER001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PAPER002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PAPER003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PAPER004\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PAPER005\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PAPER006\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PAPER007\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PC001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PC002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PC003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PC004\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PC005\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PC006\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PEN001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PEN002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PEN003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PEN004\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PEN005\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PEN006\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PRC001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PRC002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PRC003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PRC004\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PRC005\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PRN001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PRN002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PRN003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PRN004\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"PRN005\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"REMEMBER01\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"REMEMBER02\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"REMEMBER03\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"RUB001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"SCI001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"SCN001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"SCN002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"TAPE001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"TAPE002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"TAPE003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"TR001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"TR002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"TR003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"TR004\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"TR005\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"TRAY001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"TRAY002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"TRAY003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"VID001\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"VID002\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            },\n            {\n                \"discountType\": 0,\n                \"recordCreateDate\": \"31/05/2013 15:39:25\",\n                \"recordDeleted\": false,\n                \"recordModifyDate\": \"21/08/2018 18:18:50\",\n                \"rounderAdjustment\": 0,\n                \"rounderDirection\": 0,\n                \"rounderMethod\": 0,\n                \"rounderMultipleOf\": 0,\n                \"stockCode\": \"VID003\",\n                \"storedPrice\": 0,\n                \"type\": \"P\",\n                \"calcValue\": 5,\n                \"calcMethod\": 2\n            }\n        ]\n    },\n    \"message\": null\n}"}],"_postman_id":"e16b4bcd-f8bf-4a97-9cb2-11a8802b69c3"},{"name":"Read All Price Lists","id":"db49e41d-f899-4ef4-b7d1-7ad7667211d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/priceList","description":"<h2 id=\"get-all-price-lists\">Get All Price Lists</h2>\n<ul>\n<li><p>Description: Fetches All Price Lists.</p>\n</li>\n<li><p>Endpoint URL: <code>api/priceList</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","priceList"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"acdc6815-bf04-434a-bf67-6bc975394944","name":"Read All Price Lists","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/priceList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:50:01 GMT"},{"key":"Content-Length","value":"860"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"name\": \"Public Price List\",\n            \"currency\": 1,\n            \"hasStaticPrices\": 0,\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": 0\n        },\n        {\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"name\": \"Trade Price List A\",\n            \"currency\": 1,\n            \"hasStaticPrices\": 0,\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": 0\n        },\n        {\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"name\": \"Trade Price List B\",\n            \"currency\": 1,\n            \"hasStaticPrices\": 0,\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": 0\n        },\n        {\n            \"type\": \"U\",\n            \"pricingRef\": \"MCN001\",\n            \"name\": \"McNally Computer Supplies\",\n            \"currency\": 1,\n            \"hasStaticPrices\": 0,\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": 0\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"db49e41d-f899-4ef4-b7d1-7ad7667211d8"},{"name":"Search Product Selling Prices","id":"fef0167a-92e8-4573-bfae-70b594ee5d3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"RECORD_MODIFY_DATE\",\n        \"type\": \"gte\",\n        \"value\": \"01/01/2025\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchPrice","description":"<h2 id=\"search-prices\">Search Prices</h2>\n<ul>\n<li><p>Description: Searches the PRICE table in Sage.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchPrice</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n<h2 id=\"type-status\">Type Status</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\nP        Customer Price List\nS        Special Customer Pricing\nU        Special supplier Pricing\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchPrice"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e940cc5d-7c1a-4660-9859-416f1a2935dc","name":"Search Product Selling Prices","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"RECORD_MODIFY_DATE\",\n        \"type\": \"gte\",\n        \"value\": \"01/01/2018\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchPrice"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 13:51:25 GMT"},{"key":"Content-Length","value":"105474"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"priceId\": \"PGUF     APPWCH\",\n            \"type\": \"P\",\n            \"pricingRef\": \"GUF\",\n            \"stockCode\": \"APPWCH\",\n            \"calcMethod\": \"0\",\n            \"calcValue\": 0,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  BOARD001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"BOARD001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  BOARD002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"BOARD002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  BOOKS001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"BOOKS001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  BOOKS002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"BOOKS002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  BOOKS003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"BOOKS003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  CALC001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"CALC001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  CALC002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"CALC002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  CALC003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"CALC003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  CALC004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"CALC004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  CAS001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"CAS001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  CAS002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"CAS002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  CAS003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"CAS003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  CDR001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"CDR001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  CDR002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"CDR002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  CDR003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"CDR003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  COR001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"COR001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  DISK001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"DISK001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  DISK002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"DISK002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  ENV001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"ENV001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  ENV002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"ENV002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  ENV003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"ENV003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  ENV004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"ENV004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  FAX001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"FAX001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  FAX002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"FAX002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  FAX003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"FAX003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  FIL001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"FIL001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  FIL002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"FIL002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  FLIP001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"FLIP001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  FLIP002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"FLIP002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  HAR001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"HAR001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  HAR002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"HAR002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  HAR003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"HAR003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  KEY001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"KEY001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  LABELS001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"LABELS001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  LABELS002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"LABELS002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  LAM001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"LAM001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  LAM002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"LAM002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MAIL001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MAIL001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MEM001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MEM001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MEM002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MEM002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MEM003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MEM003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MEM004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MEM004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MEM005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MEM005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MEM006\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MEM006\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MON001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MON001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MON002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MON002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MON003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MON003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MOTH001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MOTH001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MOTH002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MOTH002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MOTH003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MOTH003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MOUSE001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MOUSE001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MOUSE002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MOUSE002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MOUSE003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MOUSE003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  MOUSE004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"MOUSE004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PAPER001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PAPER001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PAPER002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PAPER002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PAPER003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PAPER003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PAPER004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PAPER004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PAPER005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PAPER005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PAPER006\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PAPER006\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PAPER007\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PAPER007\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PC001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PC001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PC002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PC002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PC003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PC003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PC004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PC004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PC005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PC005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PC006\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PC006\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PEN001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PEN001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PEN002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PEN002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PEN003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PEN003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PEN004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PEN004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PEN005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PEN005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PEN006\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PEN006\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PRC001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PRC001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PRC002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PRC002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PRC003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PRC003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PRC004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PRC004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PRC005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PRC005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PRN001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PRN001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PRN002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PRN002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PRN003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PRN003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PRN004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PRN004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  PRN005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"PRN005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  REMEMBER01\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"REMEMBER01\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  REMEMBER02\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"REMEMBER02\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  REMEMBER03\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"REMEMBER03\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  RUB001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"RUB001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  SCI001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"SCI001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  SCN001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"SCN001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  SCN002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"SCN002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  TAPE001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"TAPE001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  TAPE002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"TAPE002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  TAPE003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"TAPE003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  TR001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"TR001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  TR002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"TR002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  TR003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"TR003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  TR004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"TR004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  TR005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"TR005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  TRAY001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"TRAY001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  TRAY002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"TRAY002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  TRAY003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"TRAY003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  VID001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"VID001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  VID002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"VID002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PPUBLIC  VID003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"PUBLIC\",\n            \"stockCode\": \"VID003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 2,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  BOARD001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"BOARD001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  BOARD002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"BOARD002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  BOOKS001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"BOOKS001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  BOOKS002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"BOOKS002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  BOOKS003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"BOOKS003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  CALC001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"CALC001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  CALC002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"CALC002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  CALC003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"CALC003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  CALC004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"CALC004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  CAS001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"CAS001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  CAS002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"CAS002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  CAS003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"CAS003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  CDR001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"CDR001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  CDR002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"CDR002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  CDR003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"CDR003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  COR001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"COR001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  DISK001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"DISK001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  DISK002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"DISK002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  ENV001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"ENV001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  ENV002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"ENV002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  ENV003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"ENV003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  ENV004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"ENV004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  FAX001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"FAX001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  FAX002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"FAX002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  FAX003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"FAX003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  FIL001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"FIL001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  FIL002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"FIL002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  FLIP001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"FLIP001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  FLIP002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"FLIP002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  HAR001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"HAR001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  HAR002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"HAR002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  HAR003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"HAR003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  KEY001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"KEY001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  LABELS001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"LABELS001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  LABELS002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"LABELS002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  LAM001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"LAM001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  LAM002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"LAM002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MAIL001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MAIL001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MEM001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MEM001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MEM002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MEM002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MEM003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MEM003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MEM004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MEM004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MEM005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MEM005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MEM006\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MEM006\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MON001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MON001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MON002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MON002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MON003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MON003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MOTH001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MOTH001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MOTH002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MOTH002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MOTH003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MOTH003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MOUSE001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MOUSE001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MOUSE002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MOUSE002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MOUSE003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MOUSE003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  MOUSE004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"MOUSE004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PAPER001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PAPER001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PAPER002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PAPER002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PAPER003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PAPER003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PAPER004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PAPER004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PAPER005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PAPER005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PAPER006\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PAPER006\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PAPER007\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PAPER007\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PC001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PC001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PC002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PC002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PC003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PC003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PC004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PC004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PC005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PC005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PC006\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PC006\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PEN001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PEN001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PEN002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PEN002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PEN003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PEN003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PEN004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PEN004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PEN005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PEN005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PEN006\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PEN006\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PRC001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PRC001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PRC002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PRC002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PRC003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PRC003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PRC004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PRC004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PRC005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PRC005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PRN001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PRN001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PRN002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PRN002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PRN003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PRN003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PRN004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PRN004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  PRN005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"PRN005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  REMEMBER01\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"REMEMBER01\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  REMEMBER02\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"REMEMBER02\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  REMEMBER03\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"REMEMBER03\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  RUB001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"RUB001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  SCI001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"SCI001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  SCN001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"SCN001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  SCN002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"SCN002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  TAPE001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"TAPE001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  TAPE002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"TAPE002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  TAPE003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"TAPE003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  TR001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"TR001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  TR002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"TR002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  TR003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"TR003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  TR004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"TR004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  TR005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"TR005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  TRAY001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"TRAY001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  TRAY002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"TRAY002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  TRAY003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"TRAY003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  VID001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"VID001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  VID002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"VID002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEA  VID003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEA\",\n            \"stockCode\": \"VID003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 5,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  BOARD001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"BOARD001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  BOARD002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"BOARD002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  BOOKS001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"BOOKS001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  BOOKS002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"BOOKS002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  BOOKS003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"BOOKS003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  CALC001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"CALC001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  CALC002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"CALC002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  CALC003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"CALC003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  CALC004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"CALC004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  CAS001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"CAS001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  CAS002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"CAS002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  CAS003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"CAS003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  CDR001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"CDR001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  CDR002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"CDR002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  CDR003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"CDR003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  COR001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"COR001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  DISK001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"DISK001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  DISK002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"DISK002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  ENV001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"ENV001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  ENV002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"ENV002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  ENV003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"ENV003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  ENV004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"ENV004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  FAX001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"FAX001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  FAX002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"FAX002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  FAX003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"FAX003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  FIL001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"FIL001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  FIL002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"FIL002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  FLIP001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"FLIP001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  FLIP002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"FLIP002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  HAR001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"HAR001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  HAR002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"HAR002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  HAR003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"HAR003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  KEY001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"KEY001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  LABELS001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"LABELS001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  LABELS002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"LABELS002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  LAM001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"LAM001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  LAM002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"LAM002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MAIL001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MAIL001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MEM001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MEM001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MEM002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MEM002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MEM003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MEM003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MEM004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MEM004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MEM005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MEM005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MEM006\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MEM006\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MON001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MON001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MON002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MON002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MON003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MON003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MOTH001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MOTH001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MOTH002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MOTH002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MOTH003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MOTH003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MOUSE001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MOUSE001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MOUSE002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MOUSE002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MOUSE003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MOUSE003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  MOUSE004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"MOUSE004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PAPER001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PAPER001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PAPER002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PAPER002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PAPER003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PAPER003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PAPER004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PAPER004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PAPER005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PAPER005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PAPER006\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PAPER006\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PAPER007\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PAPER007\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PC001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PC001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PC002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PC002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PC003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PC003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PC004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PC004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PC005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PC005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PC006\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PC006\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PEN001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PEN001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PEN002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PEN002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PEN003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PEN003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PEN004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PEN004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PEN005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PEN005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PEN006\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PEN006\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PRC001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PRC001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PRC002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PRC002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PRC003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PRC003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PRC004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PRC004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PRC005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PRC005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PRN001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PRN001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PRN002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PRN002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PRN003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PRN003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PRN004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PRN004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  PRN005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"PRN005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  REMEMBER01\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"REMEMBER01\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  REMEMBER02\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"REMEMBER02\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  REMEMBER03\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"REMEMBER03\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  RUB001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"RUB001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  SCI001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"SCI001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  SCN001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"SCN001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  SCN002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"SCN002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  TAPE001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"TAPE001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  TAPE002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"TAPE002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  TAPE003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"TAPE003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  TR001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"TR001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  TR002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"TR002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  TR003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"TR003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  TR004\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"TR004\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  TR005\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"TR005\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  TRAY001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"TRAY001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  TRAY002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"TRAY002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  TRAY003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"TRAY003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  VID001\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"VID001\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  VID002\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"VID002\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"PTRADEB  VID003\",\n            \"type\": \"P\",\n            \"pricingRef\": \"TRADEB\",\n            \"stockCode\": \"VID003\",\n            \"calcMethod\": \"2\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"SA1D001  BOARD001\",\n            \"type\": \"S\",\n            \"pricingRef\": \"A1D001\",\n            \"stockCode\": \"BOARD001\",\n            \"calcMethod\": \"0\",\n            \"calcValue\": 18,\n            \"storedPrice\": 18,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"SBUS001  BOARD001\",\n            \"type\": \"S\",\n            \"pricingRef\": \"BUS001\",\n            \"stockCode\": \"BOARD001\",\n            \"calcMethod\": \"4\",\n            \"calcValue\": 10,\n            \"storedPrice\": 0,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"SBUS001  BOOKS001\",\n            \"type\": \"S\",\n            \"pricingRef\": \"BUS001\",\n            \"stockCode\": \"BOOKS001\",\n            \"calcMethod\": \"0\",\n            \"calcValue\": 7,\n            \"storedPrice\": 7,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"SBUS001  BOOKS003\",\n            \"type\": \"S\",\n            \"pricingRef\": \"BUS001\",\n            \"stockCode\": \"BOOKS003\",\n            \"calcMethod\": \"0\",\n            \"calcValue\": 4,\n            \"storedPrice\": 4,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        },\n        {\n            \"priceId\": \"SPIC001  CALC004\",\n            \"type\": \"S\",\n            \"pricingRef\": \"PIC001\",\n            \"stockCode\": \"CALC004\",\n            \"calcMethod\": \"0\",\n            \"calcValue\": 5.5,\n            \"storedPrice\": 5.5,\n            \"rounderMethod\": \"0\",\n            \"rounderDirection\": \"0\",\n            \"rounderMultipleOf\": \"0\",\n            \"rounderAdjustment\": \"0\",\n            \"recordCreateDate\": \"31/05/2013 15:39:25\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"fef0167a-92e8-4573-bfae-70b594ee5d3e"}],"id":"b9fa8341-02c6-4c40-af1c-c71906b595f6","_postman_id":"b9fa8341-02c6-4c40-af1c-c71906b595f6","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}},{"name":"Sales Orders","item":[{"name":"Create Sales Order","id":"54830dc0-bf07-4b48-8dd6-610cdc7f41e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"customerAccountRef\": \"SMOK0001\",\n    \"orderDate\": \"03/07/2024\",\n    \"customerOrderNumber\": \"1001\",\n    \"address1\": \"Hyperext\",\n    \"address2\": \"Unity House\",\n    \"address3\": \"Wigan\",\n    \"address4\": \"Westwood Park\",\n    \"address5\": \"WN3 4HE\",\n    \"delAddress1\": \"Hyperext\",\n    \"delAddress2\": \"Unity House\",\n    \"delAddress3\": \"Wigan\",\n    \"delAddress4\": \"Westwood Park\",\n    \"delAddress5\": \"WN3 4HE\",\n    \"contactName\": \"Hyperext\",\n    \"customerTelephoneNumber\": \"01744697929\",\n    \"notes1\": \"Notes1\",\n    \"invoiceItems\": [\n        {\n            \"stockCode\": \"S3\",\n            \"taxCode\": 1,\n            \"departmentNumber\": 1,\n            \"nominal\": \"4000\",\n            \"unitPrice\": 100,\n            \"quantity\": 1,\n            \"taxRate\": 20,\n            \"description\": \"New SO\",\n            \"details\": \"New Sales Order\",\n            \"serviceFlag\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/salesOrder/","description":"<h2 id=\"post-create-sales-order\">Post Create Sales Order</h2>\n<ul>\n<li><p>Descitpion: Creates new sales order</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesOrder</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\"> customerAccountRef // String (max 8 chars), required, customer account must exist\n customerOrderNumber // String (max 60 chars), optional\n orderDate // String, Date (dd/mm/yyyy), optional\n customerTelephoneNumber // String (max 30 chars), optional\n contactName // String (max 30 chars), optional\n userName // String (max 30 chars), optional\n address1 // String (max 60 chars), optional\n address2 // String (max 60 chars), optional\n address3 // String (max 60 chars), optional\n address4 // String (max 60 chars), optional\n address5 // String (max 60 chars), optional\n delName // String (max 30 chars), optional, 60 chars on V29 or newer\n delAddress1 // String (max 60 chars), optional\n delAddress2 // String (max 60 chars), optional\n delAddress3 // String (max 60 chars), optional\n delAddress4 // String (max 60 chars), optional\n delAddress5 // String (max 60 chars), optional\n netValueDiscountAmount // Double (max 8 chars), optional\n netValueDiscountDescription // string (max 30 chars), optional\n carrNet // Double (max 8 chars), optional \n carrTax // Double (max 8 chars), optional\n foreignRate // Double (max 2 chars), optional\n notes1 // String (max 60 chars), optional\n notes2 // String (max 60 chars), optional\n notes3 // String (max 60 chars), optional\n analysis1 // String (max 30 chars), optional\n analysis2 // String (max 30 chars), optional\n analysis3 // String (max 30 chars), optional\n carrNomCode // String (max 8 chars), optional\n carrTaxCode // Int (max 2 chars), optional\n currency // Int (max 1 chars), optional, use values from sage Settings &gt; Currencies\n departmentNumber // Int, optional \n carriageDepartmentNumber // Int, optional\n globalNominal // String,(max 8 chars) optional\n globalDetails // String, (max 60 chars), optional\n globalTaxCode // Int, (max 8 chars), optional\n globalDepartment // Int, (max 2 chars), optional\n consignmentRef  // String (max 30 chars), optional\n courierNumber // Int (Max 30 chars), optional\n orderDueDate // Date (dd/mm/yyyy), optional\n quoteStatus // Int (max 2 chars), optional\n quoteExpiry // Date (dd/mm/yyyy), optional (only used for quotes)\n orderType // Int, optional\n settlementDiscRate // double, (max 8 chars), optional\n settlementDueDays  // int, (max 5 chars), optional\n bankRef // String, (max 8 chars), optional\n fillGlobalsFromCustomerDefaults // bool, optional\n orderItemsDataFromStockItemData // bool, optional\n invoiceItems // array\n        stockCode // String (max 30 chars), required\n        description // String (max 60 chars for V28 or older, max 120 for V29 or newer), optional\n        quantity // Double (max 8 chars), required\n        unitPrice  // Double (max 8 chars), required\n        unitOfSale // string, max 8 chars, optional\n        taxRate // Double eg 20.0, (max 8 chars), required\n        taxCode // Int eg 1, (max 2 chars), required\n        discount // Double eg 25.0, percentage discount (max 8 chars), required\n        discountAmount // Double (max 8 chars), optional\n        netAmount // Double (max 8 chars), optional\n        departmentNumber // Int, required\n        nominal // String (max 8 chars), required to update ledgers\n        details // String (1023 chars), only for service invoice items\n        comment1 // String (max 60 chars), optional\n        comment2 // String (max 60 chars), optional\n        dueDate // Date (dd/mm/yyyy), optional\n        serviceFlag // int, optional (set to 2 for Service Item)\n// THESE THREE FIELDS ONLY USED FOR SALES ORDER **QUOTATIONS**\n orderType // Int, optional, set to value 9 for a quote\n quoteExpiry // optional, date string dd/mm/yyyy \n quoteStatus // optional, 0 by default. \n // 0 - Not a quote \n // 1 - Open\n // 2 - Won\n // 3 - Lost\n // 4 - Invalid\n\n</code></pre>\n<p>Notes: if you do not provide the address1-5 fields they will be populated by the customer record address details</p>\n<p>For field 'orderItemsDataFromStockItemData' if true, any missing information on the invoice items will be filled in from the stock item defaults. Bare in mind this will be making a separate call for the stock data AND a separate call for the tax rate.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesOrder",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"39f486c1-f741-4f28-b5cf-61246284ac4b","name":"Create Sales Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"company","value":"{{company}}","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"customerAccountRef\": \"SMOK0001\",\n    \"orderDate\": \"03/07/2024\",\n    \"customerOrderNumber\": \"1001\",\n    \"address1\": \"Hyperext\",\n    \"address2\": \"Unity House\",\n    \"address3\": \"Wigan\",\n    \"address4\": \"Westwood Park\",\n    \"address5\": \"WN3 4HE\",\n    \"countryCode\": \"GB\",\n    \"delAddress1\": \"Hyperext\",\n    \"delAddress2\": \"Unity House\",\n    \"delAddress3\": \"Wigan\",\n    \"delAddress4\": \"Westwood Park\",\n    \"delAddress5\": \"WN3 4HE\",\n    \"contactName\": \"Hyperext\",\n    \"customerTelephoneNumber\": \"01744697929\",\n    \"notes1\": \"Notes1\",\n    \"invoiceItems\": [\n        {\n            \"stockCode\": \"S3\",\n            \"taxCode\": 1,\n            \"departmentNumber\": 1,\n            \"nominal\": \"4000\",\n            \"unitPrice\": 100,\n            \"quantity\": 1,\n            \"taxRate\": 20,\n            \"description\": \"New SO\",\n            \"details\": \"New Sales Order\",\n            \"serviceFlag\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/salesOrder/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 09 Dec 2025 11:09:25 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 67,\n    \"message\": null\n}"}],"_postman_id":"54830dc0-bf07-4b48-8dd6-610cdc7f41e3"},{"name":"Update Sales Order","id":"e4b4ca12-9a6e-44d5-bab1-bd3fff719eb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"customerAccountRef\": \"SMOK0001\",\r\n    \"orderNumber\": 31,\r\n    \"orderDate\": \"03/07/2024\",\r\n    \"customerOrderNumber\": \"PO90210\",\r\n    \"customerTelephoneNumber\": \"01744 697929\",\r\n    \"contactName\": \"Mr Steven Smith\",\r\n    \"customerName\": \"Smokey BBQ Co\",\r\n    \"userName\": \"Stefano User\",\r\n    \"address1\": \"221 Main Street\",\r\n    \"address2\": \"Haydock\",\r\n    \"address3\": \"St HELENS\",\r\n    \"address4\": \"WA10 6RP\",\r\n    \"address5\": \"United Kingdom\",\r\n    \"delName\": \"Mr Delivery Guy\",\r\n    \"delAddress1\": \"22 Acacia Avenue\",\r\n    \"delAddress2\": \"Green Fields\",\r\n    \"delAddress3\": \"Somewhereville\",\r\n    \"delAddress4\": \"Merseyside\",\r\n    \"delAddress5\": \"WA11 5EW\",\r\n    \"carrNet\": 0.0,\r\n    \"carrTax\": 0.0,\r\n    \"carrNomCode\": \"4001\",\r\n    \"carrTaxCode\": 1,\r\n    \"carriageDepartmentNumber\": 2,\r\n    \"globalDiscountRate\": null,\r\n    \"netValueDiscountAmount\": 100.0,\r\n    \"netValueDiscountDescription\": \"test by steve\",\r\n    \"currency\": -1,\r\n    \"departmentNumber\": 0,\r\n    \"orderType\": 0,\r\n    \"quoteExpiry\": null,\r\n    \"quoteStatus\": 0,\r\n    \"orderDueDate\": null,\r\n    \"notes1\": \"Test Sales Note 1\",\r\n    \"notes2\": \"Sales Note 2\",\r\n    \"notes3\": \"Sales Order Notes 3\",\r\n    \"analysis1\": \"Test Analysis 1\",\r\n    \"analysis2\": \"Test Analysis 2\",\r\n    \"analysis3\": \"Test Analysis 3\",\r\n    \"consignmentRef\": \"ABC987654333211\",\r\n    \"invoiceItems\": [\r\n        {\r\n            \"id\": 0,\r\n            \"stockCode\": \"S1\",\r\n            \"description\": \"This is another short description\",\r\n            \"nominal\": \"4001\",\r\n            \"details\": \"\",\r\n            \"taxCode\": 1,\r\n            \"taxRate\": 20.0,\r\n            \"quantity\": 1.0,\r\n            \"unitPrice\": 2500.0,\r\n            \"unitOfSale\": \"cm3\",\r\n            \"discount\": 60.0,\r\n            \"departmentNumber\": 1,\r\n            \"discountAmount\": 1500.0,\r\n            \"netAmount\": 1000.0\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/salesorder/","description":"<h2 id=\"patch-sales-order\">Patch sales Order</h2>\n<ul>\n<li><p>Description: Updates Sales Order</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesOrder</code></p>\n</li>\n<li><p>Method: <code>PATCH</code></p>\n</li>\n<li><p>NOTES:</p>\n</li>\n</ul>\n<p>This endpoint should only be used if you wish to add more line items to an existing Sales Order. For any other changes use endpoint api/salesOrder/Update</p>\n<ul>\n<li>Parameters:</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\"> orderNumber // Int (max 4 chars), required\n customerAccountRef // String (max 8 chars), required, customer account must exist\n customerOrderNumber // String (max 60 chars), optional\n customerTelephoneNumber // String (max 30 chars), optional\n contactName // String (max 30 chars), optional\n userName // String (max 30 chars), optional\n address1 // String (max 60 chars), optional\n address2 // String (max 60 chars), optional\n address3 // String (max 60 chars), optional\n address4 // String (max 60 chars), optional\n address5 // String (max 60 chars), optional\n delName // String (max 30 chars), optional, 60 chars on V29 or newer\n delAddress1 // String (max 60 chars), optional\n delAddress2 // String (max 60 chars), optional\n delAddress3 // String (max 60 chars), optional\n delAddress4 // String (max 60 chars), optional\n delAddress5 // String (max 60 chars), optional\n globalDiscountRate // Double (max 8 chars), optional, overrides line item discounts\n carrNet // Double (max 8 chars), optional \n carrTax // Double (max 8 chars), optional\n foreignRate // Double (max 2 chars), optional\n notes1 // String (max 60 chars), optional\n notes2 // String (max 60 chars), optional\n notes3 // String (max 60 chars), optional\n analysis1 // String (max 30 chars), optional\n analysis2 // String (max 30 chars), optional\n analysis3 // String (max 30 chars), optional\n carrNomCode // String (max 8 chars), optional\n carrTaxCode // Int (max 2 chars), optional\n currency // Int (max 1 chars), optional, use values from sage Settings &gt; Currencies\n departmentNumber // Int, optional\n orderDueDate // Date (dd/mm/yyyy), optional\n quoteStatus // int (max 2 chars), optional\n quoteExpiry // Date (dd/mm/yyyy), optional (only used for quotes)\n orderType // int, optional\n invoiceItems // array\n        stockCode // String (max 30 chars), required\n        description // String, (max 60 chars), optional\n        quantity // Double (max 8 chars), required\n        unitPrice  // Double (max 8 chars), required\n        taxRate // Double eg 20.0 (max 8 chars), required\n        taxCode // Int eg 1 (max 2 chars), required\n        discount // Double eg 25.0 (max 8 chars), required\n        departmentNumber // Int, required\n        nominal // String (max 8 chars), required to update ledgers\n        details // String, (1023 chars)\n        comment1 // String (max 60 chars), optional\n        comment2 // String (max 60 chars), optional \n        dueDate // Date (dd/mm/yyyy), optional\n// THESE THREE FIELDS ONLY USED FOR SALES ORDER **QUOTATIONS**\n orderType // Int, optional, set to value 9 for a quote\n quoteExpiry // optional, date string dd/mm/yyyy \n quoteStatus // optional, 0 by default. \n // 0 - Not a quote \n // 1 - Open\n // 2 - Won\n // 3 - Lost\n // 4 - Invalid\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesorder",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f03c6a0c-818a-404e-aa14-8d5b08043219","name":"Update Sales Order","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"customerAccountRef\": \"SMOK0001\",\r\n    \"orderNumber\": 31,\r\n    \"orderDate\": \"03/07/2024\",\r\n    \"customerOrderNumber\": \"PO90210\",\r\n    \"customerTelephoneNumber\": \"01744 697929\",\r\n    \"contactName\": \"Mr Steven Smith\",\r\n    \"customerName\": \"Smokey BBQ Co\",\r\n    \"userName\": \"Stefano User\",\r\n    \"address1\": \"221 Main Street\",\r\n    \"address2\": \"Haydock\",\r\n    \"address3\": \"St HELENS\",\r\n    \"address4\": \"WA10 6RP\",\r\n    \"address5\": \"United Kingdom\",\r\n    \"delName\": \"Mr Delivery Guy\",\r\n    \"delAddress1\": \"22 Acacia Avenue\",\r\n    \"delAddress2\": \"Green Fields\",\r\n    \"delAddress3\": \"Somewhereville\",\r\n    \"delAddress4\": \"Merseyside\",\r\n    \"delAddress5\": \"WA11 5EW\",\r\n    \"carrNet\": 0.0,\r\n    \"carrTax\": 0.0,\r\n    \"carrNomCode\": \"4001\",\r\n    \"carrTaxCode\": 1,\r\n    \"carriageDepartmentNumber\": 2,\r\n    \"globalDiscountRate\": null,\r\n    \"netValueDiscountAmount\": 100.0,\r\n    \"netValueDiscountDescription\": \"test by steve\",\r\n    \"currency\": -1,\r\n    \"departmentNumber\": 0,\r\n    \"orderType\": 0,\r\n    \"quoteExpiry\": null,\r\n    \"quoteStatus\": 0,\r\n    \"orderDueDate\": null,\r\n    \"notes1\": \"Test Sales Note 1\",\r\n    \"notes2\": \"Sales Note 2\",\r\n    \"notes3\": \"Sales Order Notes 3\",\r\n    \"analysis1\": \"Test Analysis 1\",\r\n    \"analysis2\": \"Test Analysis 2\",\r\n    \"analysis3\": \"Test Analysis 3\",\r\n    \"consignmentRef\": \"ABC987654333211\",\r\n    \"invoiceItems\": [\r\n        {\r\n            \"id\": 0,\r\n            \"stockCode\": \"S1\",\r\n            \"description\": \"This is another short description\",\r\n            \"nominal\": \"4001\",\r\n            \"details\": \"\",\r\n            \"taxCode\": 1,\r\n            \"taxRate\": 20.0,\r\n            \"quantity\": 1.0,\r\n            \"unitPrice\": 2500.0,\r\n            \"unitOfSale\": \"cm3\",\r\n            \"discount\": 60.0,\r\n            \"departmentNumber\": 1,\r\n            \"discountAmount\": 1500.0,\r\n            \"netAmount\": 1000.0\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/salesorder/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 14:34:59 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 31,\n    \"message\": null\n}"}],"_postman_id":"e4b4ca12-9a6e-44d5-bab1-bd3fff719eb4"},{"name":"NEW Update Sales Order","id":"28d20447-bbc5-4f31-a762-7669b27e6b12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n        \"address1\": \"address1\",\r\n        \"address2\": \"address2\",\r\n        \"address3\": \"address3\",\r\n        \"address4\": \"address4\",\r\n        \"address5\": \"address5\",\r\n        \"customerAccountRef\": \"A1D001\",\r\n        \"orderNumber\" : 34\r\n    }"},"url":"{{url}}/api/salesOrder/update","description":"<h2 id=\"new-patch-sales-order\">NEW Patch sales Order</h2>\n<ul>\n<li><p>Description: Updates Sales Order</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesOrder/update</code></p>\n</li>\n<li><p>Method: <code>PATCH</code></p>\n</li>\n<li><p>NOTES</p>\n</li>\n</ul>\n<p>This endpoint can NOT be used to add more lines to an existing Sales Order. If you wish to update an existing sales order and add more lines you would need to use endpoint - <code>api/salesOrder</code></p>\n<ul>\n<li>Parameters:</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\"> orderNumber // Int (max 4 chars), required\n customerAccountRef // String (max 8 chars), required, customer account must exist\n customerOrderNumber // String (max 60 chars), optional\n customerTelephoneNumber // String (max 30 chars), optional\n contactName // String (max 30 chars), optional\n userName // String (max 30 chars), optional\n address1 // String (max 60 chars), optional\n address2 // String (max 60 chars), optional\n address3 // String (max 60 chars), optional\n address4 // String (max 60 chars), optional\n address5 // String (max 60 chars), optional\n delName // String (max 30 chars), optional, 60 chars on V29 or newer\n delAddress1 // String (max 60 chars), optional\n delAddress2 // String (max 60 chars), optional\n delAddress3 // String (max 60 chars), optional\n delAddress4 // String (max 60 chars), optional\n delAddress5 // String (max 60 chars), optional\n globalDiscountRate // Double (max 8 chars), optional\n carrNet // Double (max 8 chars), optional \n carrTax // Double (max 8 chars), optional\n foreignRate // Double (max 2 chars), optional\n notes1 // String (max 60 chars), optional\n notes2 // String (max 60 chars), optional\n notes3 // String (max 60 chars), optional\n analysis1 // String (max 30 chars), optional\n analysis2 // String (max 30 chars), optional\n analysis3 // String (max 30 chars), optional\n carrNomCode // String (max 8 chars), optional\n carrTaxCode // Int (max 2 chars), optional\n currency // Int (max 1 chars), optional, use values from sage Settings &gt; Currencies\n departmentNumber // Int, optional\n orderDueDate // Date (dd/mm/yyyy), optional\n quoteStatus // int (max 2 chars), optional\n quoteExpiry // Date (dd/mm/yyyy), optional (only used for quotes)\n orderType // int, optional\n invoiceItems // array, optional\n        itemId // Int, required        \n        stockCode // String (max 30 chars), optiona\n        description // String, (max 60 chars), optional\n        departmentNumber // Int, optional\n        nominal // String (max 8 chars), required to update ledgers\n        details // String, (1023 chars)\n        comment1 // String (max 60 chars), optional\n        comment2 // String (max 60 chars), optional \n        dueDate // Date (dd/mm/yyyy), optional\n// THESE THREE FIELDS ONLY USED FOR SALES ORDER **QUOTATIONS**\n orderType // Int, optional, set to value 9 for a quote\n quoteExpiry // optional, date string dd/mm/yyyy \n quoteStatus // optional, 0 by default. \n // 0 - Not a quote \n // 1 - Open\n // 2 - Won\n // 3 - Lost\n // 4 - Invalid\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesOrder","update"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"be1eea03-718f-4616-9198-df6d1bc7dae0","name":"NEW Update Sales Order","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n        \"address1\": \"address1\",\r\n        \"address2\": \"address2\",\r\n        \"address3\": \"address3\",\r\n        \"address4\": \"address4\",\r\n        \"address5\": \"address5\",\r\n        \"customerAccountRef\": \"A1D001\",\r\n        \"orderNumber\" : 34\r\n    }"},"url":"{{url}}/api/salesOrder/update"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"no-cache"},{"key":"pragma","value":"no-cache"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"expires","value":"-1"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"date","value":"Wed, 15 Apr 2026 08:25:16 GMT"},{"key":"content-length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 34,\n    \"message\": null\n}"}],"_postman_id":"28d20447-bbc5-4f31-a762-7669b27e6b12"},{"name":"Read Sales Order","id":"bebfcea7-7a70-4978-8e81-138930225d81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/salesOrder/{{orderNumber}}","description":"<h2 id=\"get-sales-order\">Get Sales Order</h2>\n<ul>\n<li><p>Description: Fetches a single sales order. If wanting to get full list of sales orders use - api/searchSalesOrder.</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesOrder</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: orderNumber</p>\n</li>\n</ul>\n<h2 id=\"sales-order-status\">Sales Order Status</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value        Allocated    Dispatched       \n0            Blank        Blank\n1            Part         Blank\n2            Full         Blank\n3            Cancelled    Blank\n4            Blank        Part\n5            Part         Part\n6            Full         Part\n7            Cancel       Part\n8            Blank        Complete\n9            Held         Part\n10           Held         Blank\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesOrder","{{orderNumber}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3188414d-0dcc-42f3-ab8d-4cdf8445cfda","name":"Read Sales Order","originalRequest":{"method":"GET","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/salesOrder/{{orderNumber}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 09 Dec 2025 11:07:55 GMT"},{"key":"Content-Length","value":"3380"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"address1\": \"Timber Yard\",\n        \"address2\": \"123 Prescot Way\",\n        \"address3\": \"Alnwick\",\n        \"address4\": \"Northumberland\",\n        \"address5\": \"AL12 6GH\",\n        \"analysis1\": \"\",\n        \"analysis2\": \"\",\n        \"analysis3\": \"\",\n        \"bankRef\": null,\n        \"customerAccountRef\": \"BBS001\",\n        \"customerOrderNumber\": \"\",\n        \"customerTelephoneNumber\": \"01983 567 123\",\n        \"contactName\": \"Susan Livingstone\",\n        \"customerName\": \"Bobs Building Supplies\",\n        \"carrNet\": 0,\n        \"carrTax\": 0,\n        \"carrNomCode\": \"\",\n        \"carrTaxCode\": 1,\n        \"carriageDepartmentNumber\": 0,\n        \"consignmentRef\": \"\",\n        \"courierNumber\": 1,\n        \"countryCode\": \"GB\",\n        \"currency\": 0,\n        \"delName\": \"Bobs Building Supplies\",\n        \"delAddress1\": \"Timber Yard\",\n        \"delAddress2\": \"123 Prescot Way\",\n        \"delAddress3\": \"Alnwick\",\n        \"delAddress4\": \"Northumberland\",\n        \"delAddress5\": \"AL12 6GH\",\n        \"departmentNumber\": 0,\n        \"globalDiscountRate\": null,\n        \"globalNominal\": \"\",\n        \"globalDetails\": \"\",\n        \"globalDepartment\": null,\n        \"globalTaxCode\": 1,\n        \"itemsNet\": 3681.6,\n        \"itemsTax\": 628.17,\n        \"foreignItemsNet\": 3681.6,\n        \"foreignItemsTax\": 628.17,\n        \"foreignRate\": 1,\n        \"orderType\": 0,\n        \"orderDueDate\": null,\n        \"orderNumber\": 27,\n        \"status\": 8,\n        \"orderDate\": \"27/04/2024\",\n        \"netValueDiscountAmount\": 0,\n        \"netValueDiscountDescription\": \"\",\n        \"netValueDiscountPercentage\": 0,\n        \"notes1\": \"\",\n        \"notes2\": \"\",\n        \"notes3\": \"\",\n        \"quoteExpiry\": null,\n        \"quoteStatus\": 0,\n        \"userName\": \"\",\n        \"settlementDiscRate\": 2.5,\n        \"settlementDueDays\": 15,\n        \"fillGlobalsFromCustomerDefaults\": null,\n        \"orderItemsDataFromStockItemData\": null,\n        \"invoiceItems\": [\n            {\n                \"itemId\": 197,\n                \"id\": 0,\n                \"stockCode\": \"PC003\",\n                \"description\": \"PC Combo Pack 3\",\n                \"nominal\": \"4000\",\n                \"serviceFlag\": 0,\n                \"details\": \"\",\n                \"taxCode\": 1,\n                \"taxRate\": 20,\n                \"quantity\": 4,\n                \"unitPrice\": 712.5,\n                \"unitOfSale\": \"Each\",\n                \"discount\": 0,\n                \"departmentNumber\": 1,\n                \"comment1\": \"\",\n                \"comment2\": \"\",\n                \"discountAmount\": 0,\n                \"netAmount\": 2850,\n                \"dueDate\": null\n            },\n            {\n                \"itemId\": 198,\n                \"id\": 1,\n                \"stockCode\": \"MEM005\",\n                \"description\": \"SIMM 32mb 100Mhz\",\n                \"nominal\": \"4000\",\n                \"serviceFlag\": 0,\n                \"details\": \"\",\n                \"taxCode\": 1,\n                \"taxRate\": 20,\n                \"quantity\": 5,\n                \"unitPrice\": 47.5,\n                \"unitOfSale\": \"Each\",\n                \"discount\": 0,\n                \"departmentNumber\": 1,\n                \"comment1\": \"\",\n                \"comment2\": \"\",\n                \"discountAmount\": 0,\n                \"netAmount\": 237.5,\n                \"dueDate\": null\n            },\n            {\n                \"itemId\": 199,\n                \"id\": 2,\n                \"stockCode\": \"PAPER002\",\n                \"description\": \"Copy Paper - Standard Grade\",\n                \"nominal\": \"4000\",\n                \"serviceFlag\": 0,\n                \"details\": \"\",\n                \"taxCode\": 1,\n                \"taxRate\": 20,\n                \"quantity\": 120,\n                \"unitPrice\": 2.7499999999999996,\n                \"unitOfSale\": \"1 ream\",\n                \"discount\": 0,\n                \"departmentNumber\": 1,\n                \"comment1\": \"\",\n                \"comment2\": \"\",\n                \"discountAmount\": -5.6843418860808015e-14,\n                \"netAmount\": 330,\n                \"dueDate\": null\n            },\n            {\n                \"itemId\": 200,\n                \"id\": 3,\n                \"stockCode\": \"PRN003\",\n                \"description\": \"JP010 Jet Printer\",\n                \"nominal\": \"4000\",\n                \"serviceFlag\": 0,\n                \"details\": \"\",\n                \"taxCode\": 1,\n                \"taxRate\": 20,\n                \"quantity\": 2,\n                \"unitPrice\": 66.5,\n                \"unitOfSale\": \"Each\",\n                \"discount\": 0,\n                \"departmentNumber\": 1,\n                \"comment1\": \"\",\n                \"comment2\": \"\",\n                \"discountAmount\": 0,\n                \"netAmount\": 133,\n                \"dueDate\": null\n            },\n            {\n                \"itemId\": 201,\n                \"id\": 4,\n                \"stockCode\": \"RUB001\",\n                \"description\": \"Rubber Bands - Selection Pack (200)\",\n                \"nominal\": \"4000\",\n                \"serviceFlag\": 0,\n                \"details\": \"\",\n                \"taxCode\": 1,\n                \"taxRate\": 20,\n                \"quantity\": 2,\n                \"unitPrice\": 5.7,\n                \"unitOfSale\": \"Pack\",\n                \"discount\": 0,\n                \"departmentNumber\": 1,\n                \"comment1\": \"\",\n                \"comment2\": \"\",\n                \"discountAmount\": 0,\n                \"netAmount\": 11.4,\n                \"dueDate\": null\n            },\n            {\n                \"itemId\": 202,\n                \"id\": 5,\n                \"stockCode\": \"TR005\",\n                \"description\": \"JP030 Jet Printer Cartridge\",\n                \"nominal\": \"4000\",\n                \"serviceFlag\": 0,\n                \"details\": \"\",\n                \"taxCode\": 1,\n                \"taxRate\": 20,\n                \"quantity\": 9,\n                \"unitPrice\": 13.3,\n                \"unitOfSale\": \"Each\",\n                \"discount\": 0,\n                \"departmentNumber\": 1,\n                \"comment1\": \"\",\n                \"comment2\": \"\",\n                \"discountAmount\": 0,\n                \"netAmount\": 119.7,\n                \"dueDate\": null\n            }\n        ]\n    },\n    \"message\": null\n}"}],"_postman_id":"bebfcea7-7a70-4978-8e81-138930225d81"},{"name":"Search Sales Order","id":"42494a29-2e1a-45a2-83c0-24f2afaa719a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"DATE\",\n        \"type\": \"gte\",\n        \"value\": \"10/01/2026\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchSalesOrder","description":"<h1 id=\"search-sales-order\">Search Sales Order</h1>\n<ul>\n<li><p>Description: Searches Sales Order.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchSalesOrder</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n<h2 id=\"allocation-status\">Allocation Status</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n0        Not Allocated\n1        Partially Allocated\n2        Fully Allocated\n3        Cancelled\n4        Held\n\n</code></pre>\n<h2 id=\"dispatch-status\">Dispatch Status</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n0        Not Dispatched\n1        Partially Dispatched\n2        Fully Dispatched\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchSalesOrder"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ee13df89-0d0b-4f4d-8de7-fa74ac6efdc0","name":"Search Sales Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"RECORD_MODIFY_DATE\",\n        \"type\": \"gte\",\n        \"value\": \"20/09/2025\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchSalesOrder"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 06 Oct 2025 12:37:48 GMT"},{"key":"Content-Length","value":"4213"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"orderNumber\": \"63\",\n            \"orderDate\": \"23/09/2025 00:00:00\",\n            \"accountRef\": \"A1D001\",\n            \"name\": \"Hyperext\",\n            \"contactName\": \"Betty Bruno\",\n            \"invoiceRef\": \"302\",\n            \"customerOrderNumber\": \"\",\n            \"itemsNet\": 0,\n            \"itemsTax\": 0,\n            \"foreignItemsNet\": 0,\n            \"foreignItemsTax\": 0,\n            \"foreignRate\": 1,\n            \"itemsGross\": 0,\n            \"carrNomCode\": \"\",\n            \"carrTaxCode\": \"T1\",\n            \"carrNet\": 0,\n            \"carrTax\": 0,\n            \"carrGross\": 0,\n            \"currency\": 1,\n            \"orderDueDate\": \"\",\n            \"recordCreateDate\": \"23/09/2025 11:27:52\",\n            \"recordModifyDate\": \"23/09/2025 11:45:10\",\n            \"address1\": \"Hyperext Ltd\",\n            \"address2\": \"Unity House\",\n            \"address3\": \"Westwood Park\",\n            \"address4\": \"Wigan\",\n            \"address5\": \"WN3 4HE\",\n            \"delAddress1\": \"67a Station Road\",\n            \"delAddress2\": \"\",\n            \"delAddress3\": \"Blackpool\",\n            \"delAddress4\": \"Lancashire\",\n            \"delAddress5\": \"BP12 7HT\",\n            \"customerTelephoneNumber\": \"01744 697929\",\n            \"taxRate1\": 20,\n            \"orderOrQuote\": \"Sales Order\",\n            \"quoteStatus\": \"\",\n            \"dispatchStatus\": \"1\",\n            \"allocationStatus\": \"0\",\n            \"consignmentRef\": \"\",\n            \"notes1\": \"\",\n            \"notes2\": \"\",\n            \"notes3\": \"\",\n            \"analysis1\": \"\",\n            \"analysis2\": \"\",\n            \"analysis3\": \"\",\n            \"netValueDiscountPercentage\": 0,\n            \"courierNumber\": \"1\",\n            \"courierName\": \"\"\n        },\n        {\n            \"orderNumber\": \"64\",\n            \"orderDate\": \"23/09/2025 00:00:00\",\n            \"accountRef\": \"A1D001\",\n            \"name\": \"Hyperext\",\n            \"contactName\": \"Betty Bruno\",\n            \"invoiceRef\": \"303\",\n            \"customerOrderNumber\": \"\",\n            \"itemsNet\": 1,\n            \"itemsTax\": 0.2,\n            \"foreignItemsNet\": 1,\n            \"foreignItemsTax\": 0.2,\n            \"foreignRate\": 1,\n            \"itemsGross\": 1.2,\n            \"carrNomCode\": \"\",\n            \"carrTaxCode\": \"T1\",\n            \"carrNet\": 0,\n            \"carrTax\": 0,\n            \"carrGross\": 0,\n            \"currency\": 1,\n            \"orderDueDate\": \"\",\n            \"recordCreateDate\": \"23/09/2025 11:28:20\",\n            \"recordModifyDate\": \"23/09/2025 11:30:30\",\n            \"address1\": \"Hyperext Ltd\",\n            \"address2\": \"Unity House\",\n            \"address3\": \"Westwood Park\",\n            \"address4\": \"Wigan\",\n            \"address5\": \"WN3 4HE\",\n            \"delAddress1\": \"67a Station Road\",\n            \"delAddress2\": \"\",\n            \"delAddress3\": \"Blackpool\",\n            \"delAddress4\": \"Lancashire\",\n            \"delAddress5\": \"BP12 7HT\",\n            \"customerTelephoneNumber\": \"01744 697929\",\n            \"taxRate1\": 20,\n            \"orderOrQuote\": \"Sales Order\",\n            \"quoteStatus\": \"\",\n            \"dispatchStatus\": \"2\",\n            \"allocationStatus\": \"0\",\n            \"consignmentRef\": \"\",\n            \"notes1\": \"\",\n            \"notes2\": \"\",\n            \"notes3\": \"\",\n            \"analysis1\": \"\",\n            \"analysis2\": \"\",\n            \"analysis3\": \"\",\n            \"netValueDiscountPercentage\": 0,\n            \"courierNumber\": \"1\",\n            \"courierName\": \"\"\n        },\n        {\n            \"orderNumber\": \"65\",\n            \"orderDate\": \"23/09/2025 00:00:00\",\n            \"accountRef\": \"A1D001\",\n            \"name\": \"Hyperext\",\n            \"contactName\": \"Betty Bruno\",\n            \"invoiceRef\": \"\",\n            \"customerOrderNumber\": \"\",\n            \"itemsNet\": 0,\n            \"itemsTax\": 0,\n            \"foreignItemsNet\": 0,\n            \"foreignItemsTax\": 0,\n            \"foreignRate\": 1,\n            \"itemsGross\": 0,\n            \"carrNomCode\": \"\",\n            \"carrTaxCode\": \"T1\",\n            \"carrNet\": 0,\n            \"carrTax\": 0,\n            \"carrGross\": 0,\n            \"currency\": 1,\n            \"orderDueDate\": \"\",\n            \"recordCreateDate\": \"23/09/2025 11:28:39\",\n            \"recordModifyDate\": \"23/09/2025 11:45:37\",\n            \"address1\": \"Hyperext Ltd\",\n            \"address2\": \"Unity House\",\n            \"address3\": \"Westwood Park\",\n            \"address4\": \"Wigan\",\n            \"address5\": \"WN3 4HE\",\n            \"delAddress1\": \"67a Station Road\",\n            \"delAddress2\": \"\",\n            \"delAddress3\": \"Blackpool\",\n            \"delAddress4\": \"Lancashire\",\n            \"delAddress5\": \"BP12 7HT\",\n            \"customerTelephoneNumber\": \"01744 697929\",\n            \"taxRate1\": 0,\n            \"orderOrQuote\": \"Sales Order\",\n            \"quoteStatus\": \"\",\n            \"dispatchStatus\": \"0\",\n            \"allocationStatus\": \"2\",\n            \"consignmentRef\": \"\",\n            \"notes1\": \"\",\n            \"notes2\": \"\",\n            \"notes3\": \"\",\n            \"analysis1\": \"\",\n            \"analysis2\": \"\",\n            \"analysis3\": \"\",\n            \"netValueDiscountPercentage\": 0,\n            \"courierNumber\": \"1\",\n            \"courierName\": \"\"\n        },\n        {\n            \"orderNumber\": \"66\",\n            \"orderDate\": \"03/07/2024 00:00:00\",\n            \"accountRef\": \"SMOK0001\",\n            \"name\": \"Smokey BBQ Co\",\n            \"contactName\": \"Hyperext\",\n            \"invoiceRef\": \"\",\n            \"customerOrderNumber\": \"1001\",\n            \"itemsNet\": 100,\n            \"itemsTax\": 20,\n            \"foreignItemsNet\": 100,\n            \"foreignItemsTax\": 20,\n            \"foreignRate\": 1,\n            \"itemsGross\": 120,\n            \"carrNomCode\": \"\",\n            \"carrTaxCode\": \"T0\",\n            \"carrNet\": 0,\n            \"carrTax\": 0,\n            \"carrGross\": 0,\n            \"currency\": 1,\n            \"orderDueDate\": \"\",\n            \"recordCreateDate\": \"02/10/2025 10:49:26\",\n            \"recordModifyDate\": \"02/10/2025 10:50:32\",\n            \"address1\": \"Hyperext\",\n            \"address2\": \"Unity House\",\n            \"address3\": \"Wigan\",\n            \"address4\": \"Westwood Park\",\n            \"address5\": \"WN3 4HE\",\n            \"delAddress1\": \"Hyperext\",\n            \"delAddress2\": \"Unity House\",\n            \"delAddress3\": \"Wigan\",\n            \"delAddress4\": \"Westwood Park\",\n            \"delAddress5\": \"WN3 4HE\",\n            \"customerTelephoneNumber\": \"01744697929\",\n            \"taxRate1\": 20,\n            \"orderOrQuote\": \"Sales Order\",\n            \"quoteStatus\": \"\",\n            \"dispatchStatus\": \"2\",\n            \"allocationStatus\": \"0\",\n            \"consignmentRef\": \"\",\n            \"notes1\": \"Notes1\",\n            \"notes2\": \"\",\n            \"notes3\": \"\",\n            \"analysis1\": \"\",\n            \"analysis2\": \"\",\n            \"analysis3\": \"\",\n            \"netValueDiscountPercentage\": 0,\n            \"courierNumber\": \"1\",\n            \"courierName\": \"\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"42494a29-2e1a-45a2-83c0-24f2afaa719a"},{"name":"Partially Allocate Sales Order","id":"935cc4ba-d2d8-4c66-91e4-5858d34e1f14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": \"52\",\r\n    \"items\": [\r\n        {\r\n            \"itemId\": 253,\r\n            \"allocate\": 1\r\n        },\r\n        {\r\n            \"itemId\": 256,\r\n            \"allocate\": 0\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/salesOrderPartialAllocation","description":"<h2 id=\"partially-allocates-sales-order\">Partially Allocates Sales Order</h2>\n<ul>\n<li><p>Description: Partially allocates a Sales Order</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesOrderPartialAllocation</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Params:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\"> orderNumber //  // Required, Int\nitems\n            itemId // Required, Int\n            allocate // Required, Double\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesOrderPartialAllocation"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9835f3b1-aca3-477b-8c6d-e88439c13d6a","name":"Partially Allocate Sales Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": \"42\",\r\n    \"items\": [\r\n        {\r\n            \"itemId\": 236,\r\n            \"allocate\": 1\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/salesOrderPartialAllocation"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 11 Nov 2025 11:53:43 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 42,\n    \"message\": null\n}"}],"_postman_id":"935cc4ba-d2d8-4c66-91e4-5858d34e1f14"},{"name":"Fully Allocate Sales Order","id":"cd39a088-05f6-4141-a59a-732475636d79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{url}}/api/salesOrder/{{id}}/fullyAllocate","description":"<h2 id=\"fully-allocates-sales-order\">Fully Allocates Sales Order</h2>\n<ul>\n<li><p>Description: Fully allocates an unallocated or partially allocated sales order</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesOrder/{{id}}/fullyAllocate</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Params: orderNumber</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesOrder","{{id}}","fullyAllocate"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d78826e1-74a1-4389-a346-5af9fd005eba","name":"Fully Allocate Sales Order","originalRequest":{"method":"POST","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/salesOrder/31/fullyAllocate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 14:36:49 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 31,\n    \"message\": null\n}"}],"_postman_id":"cd39a088-05f6-4141-a59a-732475636d79"},{"name":"Fully Un-Allocate Sales Order","id":"4b98cbf5-d327-4475-a1eb-23f8e547fa81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{url}}/api/salesOrderDeAllocation/{{id}}","description":"<h2 id=\"fully-un-allocate-sales-order\">Fully Un-Allocate Sales Order</h2>\n<ul>\n<li><p>Description: Fully un-allocates an allocated or partially allocated sales order</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesOrderDeAllocation/{{id}}</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Params: orderNumber</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesOrderDeAllocation","{{id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e58bee66-74d1-4d45-953b-cdef235c99f7","name":"Fully Un-Allocate Sales Order","originalRequest":{"method":"POST","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/salesOrderDeAllocation/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 17 Nov 2025 11:24:03 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 55,\n    \"message\": null\n}"}],"_postman_id":"4b98cbf5-d327-4475-a1eb-23f8e547fa81"},{"name":"Partially Despatch Sales Order","id":"53e7f8f7-aa65-4262-88b2-32255271440c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": \"52\",\r\n    \"items\": [\r\n        {\r\n            \"itemId\": 253,\r\n            \"despatch\": 1\r\n        },\r\n        {\r\n            \"itemId\": 256,\r\n            \"despatch\": 0\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/salesOrderPartialDespatch","description":"<h2 id=\"partially-despatches-sales-order\">Partially Despatches Sales Order</h2>\n<ul>\n<li><p>Description: Partially despatches a Sales Order</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesOrderPartialDespatch</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Params:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\"> orderNumber //  // Required, Int\nitems\n            itemId // Required, Int\n            allocate // Required, Double\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesOrderPartialDespatch"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"bf4bd4f8-14f9-4627-8b28-3b38b9c575d2","name":"Partially Despatch Sales Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": \"42\",\r\n    \"items\": [\r\n        {\r\n            \"itemId\": 236,\r\n            \"despatch\": 1\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/salesOrderPartialDespatch"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 11 Nov 2025 11:54:35 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 42,\n    \"message\": null\n}"}],"_postman_id":"53e7f8f7-aa65-4262-88b2-32255271440c"},{"name":"Complete Sales Order","id":"9f26d3cc-5165-4d7e-8fbb-ade9311b7c86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{url}}/api/salesOrder/{{id}}/complete","description":"<h2 id=\"complete-sales-order\">Complete Sales Order</h2>\n<ul>\n<li><p>Description: Completes a sales order, creates goods dispatch record and a goods out stock record. Then creates Sales Invoice and returns the ID.</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesOrder/{id}/complete</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Params: orderNumber</p>\n</li>\n<li><p>NOTES: The whole order needs to be fully allocated in Sage before using this request and the items need to be stock items.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesOrder","{{id}}","complete"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fc772822-6653-4403-a528-80cce0c58d32","name":"Complete Sales Order","originalRequest":{"method":"POST","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/salesorder/31/complete"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 14:42:01 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 94,\n    \"message\": null\n}"}],"_postman_id":"9f26d3cc-5165-4d7e-8fbb-ade9311b7c86"},{"name":"Complete Sales Order With Own Invoice Date","id":"38776498-d01a-4870-8946-45f639adde0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": 73,\r\n    \"date\": \"01/01/2025\"\r\n}"},"url":"{{url}}/api/salesOrderComplete","description":"<h2 id=\"complete-sales-order\">Complete Sales Order</h2>\n<ul>\n<li><p>Description: Completes a sales order, creates goods dispatch record and a goods out stock record. Then creates Sales Invoice with date entered and returns the ID.</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesOrderComplete</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Params:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\"> orderNumber // Int (max 4 chars), required\ndate  // String, Date (dd/mm/yyyy), optional\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesOrderComplete"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fb3b2866-d01d-44dc-8f96-03d8f96f52d4","name":"Complete Sales Order With Own Invoice Date","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": 41,\r\n    \"date\": \"01/01/2025\"\r\n}"},"url":"{{url}}/api/salesOrderComplete"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 11 Nov 2025 11:23:33 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 92,\n    \"message\": null\n}"}],"_postman_id":"38776498-d01a-4870-8946-45f639adde0b"},{"name":"Hold Sales Order","id":"a5b784be-53fa-43f7-9515-60639b1e4deb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{url}}/api/salesOrder/{{id}}/hold","description":"<h2 id=\"hold-sales-order\">Hold Sales Order</h2>\n<ul>\n<li><p>Description: Marks Sales Order as \"HELD\"</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesorder/{{id}}/hold</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Params: orderNumber</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesOrder","{{id}}","hold"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fb644de2-6bfb-4ad5-848e-896966177810","name":"Hold Sales Order","originalRequest":{"method":"POST","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/salesorder/28/hold"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 14:44:36 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 28,\n    \"message\": null\n}"}],"_postman_id":"a5b784be-53fa-43f7-9515-60639b1e4deb"},{"name":"Cancel Sales Order","id":"60f01e86-67b6-48f7-878a-bb8f6c2db2ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{url}}/api/salesOrder/{{orderNumber}}","description":"<h2 id=\"cancel-sales-order\">Cancel Sales Order</h2>\n<ul>\n<li><p>Description: Deletes sales order.</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesOrder/{id}</code></p>\n</li>\n<li><p>Method <code>DELETE</code></p>\n</li>\n<li><p>Params: orderNumber</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesOrder","{{orderNumber}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"62589633-6b50-4e12-ab8d-ba401f2f5ef3","name":"Delete Sales Order","originalRequest":{"method":"DELETE","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/salesorder/28"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 14:46:06 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 28,\n    \"message\": null\n}"}],"_postman_id":"60f01e86-67b6-48f7-878a-bb8f6c2db2ff"},{"name":"Search Dispatches","id":"1b866d86-ab7d-416e-add9-5f15045494f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"RECORD_MODIFY_DATE\",\n        \"type\": \"gte\",\n        \"value\": \"18/01/2025\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchDispatch","description":"<h2 id=\"search-dispatch\">Search Dispatch</h2>\n<ul>\n<li><p>Description: Searches Dispatched Orders</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchDispatch</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchDispatch"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"1319b7c6-3f3f-4430-90b7-3824b5403bee","name":"Search Dispatches","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"RECORD_MODIFY_DATE\",\n        \"type\": \"gte\",\n        \"value\": \"18/09/2021\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchDispatch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 14:49:19 GMT"},{"key":"Content-Length","value":"4272"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"uniqueID\": 1,\n            \"gdnNumber\": 1,\n            \"itemNumber\": 1,\n            \"orderNumber\": 29,\n            \"orderItem\": 0,\n            \"accountRef\": \"BRI001\",\n            \"customerGdnNumber\": \"\",\n            \"stockCode\": \"BOOKS001\",\n            \"description\": \"A4 Ledger Book - 5 Column\",\n            \"date\": \"19/06/2009 00:00:00\",\n            \"qtyDispatched\": 5,\n            \"qtyOnOrder\": 20,\n            \"printedFlag\": false,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"uniqueID\": 2,\n            \"gdnNumber\": 1,\n            \"itemNumber\": 2,\n            \"orderNumber\": 29,\n            \"orderItem\": 1,\n            \"accountRef\": \"BRI001\",\n            \"customerGdnNumber\": \"\",\n            \"stockCode\": \"FLIP001\",\n            \"description\": \"Flip Chart - A1 Pad\",\n            \"date\": \"19/06/2009 00:00:00\",\n            \"qtyDispatched\": 3,\n            \"qtyOnOrder\": 3,\n            \"printedFlag\": false,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"uniqueID\": 3,\n            \"gdnNumber\": 1,\n            \"itemNumber\": 3,\n            \"orderNumber\": 29,\n            \"orderItem\": 2,\n            \"accountRef\": \"BRI001\",\n            \"customerGdnNumber\": \"\",\n            \"stockCode\": \"LAM001\",\n            \"description\": \"Laminator - A4\",\n            \"date\": \"19/06/2009 00:00:00\",\n            \"qtyDispatched\": 1,\n            \"qtyOnOrder\": 1,\n            \"printedFlag\": false,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"uniqueID\": 4,\n            \"gdnNumber\": 2,\n            \"itemNumber\": 1,\n            \"orderNumber\": 29,\n            \"orderItem\": 0,\n            \"accountRef\": \"BRI001\",\n            \"customerGdnNumber\": \"\",\n            \"stockCode\": \"BOOKS001\",\n            \"description\": \"A4 Ledger Book - 5 Column\",\n            \"date\": \"21/06/2009 00:00:00\",\n            \"qtyDispatched\": 15,\n            \"qtyOnOrder\": 20,\n            \"printedFlag\": false,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"uniqueID\": 5,\n            \"gdnNumber\": 3,\n            \"itemNumber\": 1,\n            \"orderNumber\": 30,\n            \"orderItem\": 1,\n            \"accountRef\": \"JSS001\",\n            \"customerGdnNumber\": \"\",\n            \"stockCode\": \"PEN004\",\n            \"description\": \"Pencil - HB\",\n            \"date\": \"23/06/2009 00:00:00\",\n            \"qtyDispatched\": 15,\n            \"qtyOnOrder\": 15,\n            \"printedFlag\": false,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"uniqueID\": 6,\n            \"gdnNumber\": 4,\n            \"itemNumber\": 1,\n            \"orderNumber\": 30,\n            \"orderItem\": 1,\n            \"accountRef\": \"JSS001\",\n            \"customerGdnNumber\": \"\",\n            \"stockCode\": \"PEN004\",\n            \"description\": \"Pencil - HB\",\n            \"date\": \"23/06/2009 00:00:00\",\n            \"qtyDispatched\": 15,\n            \"qtyOnOrder\": 15,\n            \"printedFlag\": false,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"uniqueID\": 7,\n            \"gdnNumber\": 5,\n            \"itemNumber\": 1,\n            \"orderNumber\": 30,\n            \"orderItem\": 1,\n            \"accountRef\": \"JSS001\",\n            \"customerGdnNumber\": \"\",\n            \"stockCode\": \"PEN004\",\n            \"description\": \"Pencil - HB\",\n            \"date\": \"25/06/2009 00:00:00\",\n            \"qtyDispatched\": 15,\n            \"qtyOnOrder\": 15,\n            \"printedFlag\": false,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"uniqueID\": 8,\n            \"gdnNumber\": 6,\n            \"itemNumber\": 1,\n            \"orderNumber\": 30,\n            \"orderItem\": 1,\n            \"accountRef\": \"JSS001\",\n            \"customerGdnNumber\": \"\",\n            \"stockCode\": \"PEN004\",\n            \"description\": \"Pencil - HB\",\n            \"date\": \"22/06/2009 00:00:00\",\n            \"qtyDispatched\": 15,\n            \"qtyOnOrder\": 15,\n            \"printedFlag\": false,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"uniqueID\": 9,\n            \"gdnNumber\": 7,\n            \"itemNumber\": 1,\n            \"orderNumber\": 30,\n            \"orderItem\": 1,\n            \"accountRef\": \"JSS001\",\n            \"customerGdnNumber\": \"\",\n            \"stockCode\": \"PEN004\",\n            \"description\": \"Pencil - HB\",\n            \"date\": \"19/06/2009 00:00:00\",\n            \"qtyDispatched\": 15,\n            \"qtyOnOrder\": 15,\n            \"printedFlag\": false,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"uniqueID\": 10,\n            \"gdnNumber\": 8,\n            \"itemNumber\": 1,\n            \"orderNumber\": 30,\n            \"orderItem\": 1,\n            \"accountRef\": \"JSS001\",\n            \"customerGdnNumber\": \"\",\n            \"stockCode\": \"PEN004\",\n            \"description\": \"Pencil - HB\",\n            \"date\": \"23/06/2009 00:00:00\",\n            \"qtyDispatched\": 15,\n            \"qtyOnOrder\": 15,\n            \"printedFlag\": false,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"uniqueID\": 11,\n            \"gdnNumber\": 9,\n            \"itemNumber\": 1,\n            \"orderNumber\": 30,\n            \"orderItem\": 0,\n            \"accountRef\": \"JSS001\",\n            \"customerGdnNumber\": \"\",\n            \"stockCode\": \"FLIP002\",\n            \"description\": \"Flip Chart - A1 Pad (Recycled)\",\n            \"date\": \"25/06/2009 00:00:00\",\n            \"qtyDispatched\": 12,\n            \"qtyOnOrder\": 12,\n            \"printedFlag\": false,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"uniqueID\": 0,\n            \"gdnNumber\": 10,\n            \"itemNumber\": 1,\n            \"orderNumber\": 31,\n            \"orderItem\": 0,\n            \"accountRef\": \"SMOK0001\",\n            \"customerGdnNumber\": \"SDOGDN\",\n            \"stockCode\": \"S1\",\n            \"description\": \"Whiteboard - Drywipe (900 x 1200)\",\n            \"date\": \"03/07/2024 00:00:00\",\n            \"qtyDispatched\": 1,\n            \"qtyOnOrder\": 1,\n            \"printedFlag\": false,\n            \"recordCreateDate\": \"03/07/2024\",\n            \"recordModifyDate\": \"03/07/2024\",\n            \"recordDeleted\": false\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"1b866d86-ab7d-416e-add9-5f15045494f6"},{"name":"Search Sales Items","id":"e5fdca53-36d8-4972-8eb2-c9def0823e03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"STOCK_CODE\",\r\n        \"type\": \"like\",\r\n        \"value\": \"S1\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchSopItem","description":"<h2 id=\"search-sales-order-item\">Search Sales Order Item</h2>\n<ul>\n<li><p>Description: Searches Sales Order Items.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchSopItem</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchSopItem"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"77158351-00b2-40c0-8fca-3a5177963738","name":"Search Sales Items","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"STOCK_CODE\",\r\n        \"type\": \"like\",\r\n        \"value\": \"S1\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchSopItem"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Mon, 06 Oct 2025 12:40:23 GMT"},{"key":"Content-Length","value":"2275"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"itemId\": 224,\n            \"id\": \"0\",\n            \"orderNumber\": \"37\",\n            \"description\": \"Butterfly Wireless TENS Electrodes - VAT Exempt / Blue / Pack of 3\",\n            \"stockCode\": \"S1\",\n            \"qtyOrder\": 1,\n            \"unitPrice\": 100,\n            \"unitOfSale\": \"\",\n            \"nominalCode\": \"4000\",\n            \"deptName\": \"Default\",\n            \"netAmount\": 100,\n            \"taxAmount\": 0,\n            \"taxRate\": 0,\n            \"grossAmount\": 100,\n            \"qtyAllocated\": 0,\n            \"qtyDelivered\": 0,\n            \"qtyYetToDispatch\": 0,\n            \"recordCreateDate\": \"25/06/2025 16:23:48\",\n            \"recordModifyDate\": \"25/06/2025 16:23:48\",\n            \"deleted\": 0\n        },\n        {\n            \"itemId\": 225,\n            \"id\": \"1\",\n            \"orderNumber\": \"37\",\n            \"description\": \"Range Extender Blue Dual Wireless TENS Electrodes - VAT Exempt\",\n            \"stockCode\": \"S1\",\n            \"qtyOrder\": 1,\n            \"unitPrice\": 100,\n            \"unitOfSale\": \"\",\n            \"nominalCode\": \"4000\",\n            \"deptName\": \"Default\",\n            \"netAmount\": 100,\n            \"taxAmount\": 0,\n            \"taxRate\": 0,\n            \"grossAmount\": 100,\n            \"qtyAllocated\": 0,\n            \"qtyDelivered\": 0,\n            \"qtyYetToDispatch\": 0,\n            \"recordCreateDate\": \"25/06/2025 16:23:48\",\n            \"recordModifyDate\": \"25/06/2025 16:23:48\",\n            \"deleted\": 0\n        },\n        {\n            \"itemId\": 228,\n            \"id\": \"0\",\n            \"orderNumber\": \"38\",\n            \"description\": \"Butterfly Wireless TENS Electrodes - VAT Exempt / Blue / Pack of 3\",\n            \"stockCode\": \"S1\",\n            \"qtyOrder\": 1,\n            \"unitPrice\": 1,\n            \"unitOfSale\": \"\",\n            \"nominalCode\": \"4000\",\n            \"deptName\": \"Default\",\n            \"netAmount\": 1,\n            \"taxAmount\": 0,\n            \"taxRate\": 0,\n            \"grossAmount\": 1,\n            \"qtyAllocated\": 0,\n            \"qtyDelivered\": 0,\n            \"qtyYetToDispatch\": 0,\n            \"recordCreateDate\": \"25/06/2025 16:24:23\",\n            \"recordModifyDate\": \"25/06/2025 16:24:23\",\n            \"deleted\": 0\n        },\n        {\n            \"itemId\": 229,\n            \"id\": \"1\",\n            \"orderNumber\": \"38\",\n            \"description\": \"Range Extender Blue Dual Wireless TENS Electrodes - VAT Exempt\",\n            \"stockCode\": \"S1\",\n            \"qtyOrder\": 1,\n            \"unitPrice\": 1,\n            \"unitOfSale\": \"\",\n            \"nominalCode\": \"4000\",\n            \"deptName\": \"Default\",\n            \"netAmount\": 1,\n            \"taxAmount\": 0,\n            \"taxRate\": 0,\n            \"grossAmount\": 1,\n            \"qtyAllocated\": 0,\n            \"qtyDelivered\": 0,\n            \"qtyYetToDispatch\": 0,\n            \"recordCreateDate\": \"25/06/2025 16:24:23\",\n            \"recordModifyDate\": \"25/06/2025 16:24:23\",\n            \"deleted\": 0\n        },\n        {\n            \"itemId\": 274,\n            \"id\": \"1\",\n            \"orderNumber\": \"57\",\n            \"description\": \"New SO\",\n            \"stockCode\": \"S1\",\n            \"qtyOrder\": 1,\n            \"unitPrice\": 100,\n            \"unitOfSale\": \"\",\n            \"nominalCode\": \"4000\",\n            \"deptName\": \"Sales\",\n            \"netAmount\": 100,\n            \"taxAmount\": 20,\n            \"taxRate\": 20,\n            \"grossAmount\": 120,\n            \"qtyAllocated\": 0,\n            \"qtyDelivered\": 0,\n            \"qtyYetToDispatch\": 0,\n            \"recordCreateDate\": \"29/07/2025 15:06:14\",\n            \"recordModifyDate\": \"29/07/2025 15:06:14\",\n            \"deleted\": 0\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"e5fdca53-36d8-4972-8eb2-c9def0823e03"},{"name":"Update Sales Order Items","id":"f122ed00-70d1-4e4f-9f62-0a36e27d73a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"itemId\": 48,\r\n    \"quantityOnOrder\": 108\r\n}"},"url":"{{url}}/api/salesOrderItems","description":"<h2 id=\"patch-update-sales-order-items\">PATCH Update Sales Order Items</h2>\n<ul>\n<li><p>Description: Updates quantityOnOrder &amp; unitPrice for a specific order item</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesOrderItems</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">itemId // int, required\nquantityOnOrder, // double, optional\nunitPrice // double, optional\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesOrderItems"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3f23e87f-709d-4af4-837d-c0aa349bbeff","name":"Update Sales Order Items","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"itemId\": 48,\r\n    \"quantityOnOrder\": 108\r\n}"},"url":"{{url}}/api/salesOrderItems"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 14:49:43 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 48,\n    \"message\": null\n}"}],"_postman_id":"f122ed00-70d1-4e4f-9f62-0a36e27d73a1"}],"id":"793ac012-39b7-49fe-af95-e60ba6a1c767","_postman_id":"793ac012-39b7-49fe-af95-e60ba6a1c767","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}},{"name":"Purchase Orders","item":[{"name":"Create Purchase Order","id":"3f207044-98a6-480f-b1d3-4fa225df214a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"supplierAccountRef\": \"con001\",\r\n    \"telephoneNumber\": \"01744697929\",\r\n    \"userName\": \"Hyperext\",\r\n    \"delName\": \"Hyperext\",\r\n    \"delAddress1\": \"Hyperext\",\r\n    \"delAddress2\": \"Unity House\",\r\n    \"delAddress3\": \"Wigan\",\r\n    \"delAddress4\": \"Westwood Park\",\r\n    \"delAddress5\": \"WN3 4HE\",\r\n    \"contactName\": \"Hyperext\",\r\n    \"carriageNet\": 0.0,\r\n    \"carriageTax\": 0.0,\r\n    \"globalDiscountRate\": 0.0,\r\n    \"supplierOrderNumber\": \"9633\",\r\n    \"currency\": 1,\r\n    \"departmentNumber\": 4,\r\n    \"analysis1\": \"analysis1\",\r\n    \"analysis2\": \"analysis2\",\r\n    \"analysis3\": \"analysis3\",\r\n    \"invoiceItems\": [\r\n        {\r\n            \"stockCode\": \"S1\",\r\n            \"description\": \"description\",\r\n            \"nominal\": \"5000\",\r\n            \"details\": \"\",\r\n            \"taxCode\": 1,\r\n            \"taxRate\": 20.0,\r\n            \"quantity\": 1.0,\r\n            \"unitPrice\": 100.0,\r\n            \"discount\": 0.0\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/purchaseOrder","description":"<h2 id=\"post-create-purchase-order\">Post Create Purchase Order</h2>\n<ul>\n<li><p>Description: Creates new Purchase Order</p>\n</li>\n<li><p>Endpoint URL: <code>api/purchaseOrder</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\"> supplierAccountRef // String (max 8 chars), required\n telephoneNumber // String (max 11 chars), optional\n reference // String (max 7 chars), optional\n orderNumber // Int (max 8 chars), optional on POST required for PATCH\n supplierName // String (max 30 chars), optional\n orderDate // String (dd/mm/yyyy), optional\n userName // String (max 30 chars), required\n contactName // String (max 30 chars), optional\n address1 // String (max 60 chars), optional\n address2 // String (max 60 chars), optional\n address3 // String (max 60 chars), optional\n address4 // String (max 60 chars), optional\n address5 // String (max 60 chars), optional\n delName // String (max 60 chars), optional\n delAddress1 // String (max 60 chars), optional\n delAddress2 // String (max 60 chars), optional\n delAddress3 // String (max 60 chars), optional\n delAddress4 // String (max 60 chars), optional\n delAddress5 // String (max 60 chars), optional\n notes1 // String (max 60 chars), optional\n notes2 // String (max 60 chars), optional\n notes3 // String (max 60 chars), optional\n carriageNet // Double (max 8 chars), required \n carriageTax // Double (max 60 chars), required\n carriageDepartmentNumber // Double (max 8 chars), optional \n currency // Int (max 2 chars), optional, use values from sage Settings &gt; Currencies\n supplierOrderNumber // string (max 60 chars), optional\n departmentNumber // Int (max 2 chars), optional\n projectID // int (max 4 chars), optional\n costCodeID // int (max 4 chars), optional\n dueDate // String (dd/mm/yyyy), optional\n analysis1 // String (max 30 chars), optional\n analysis2 // String (max 30 chars), optional\n analysis3 // String (max 30 chars), optional\n invoiceItems\n     stockCode  // String (max 30 chars), optional\n     description // String (max 120 chars), optional\n     quantity // double eg 20.0 (max 8 chars), required\n     details // String, optional\n     unitPrice // double eg 20.0 (max 8 chars), required\n     taxRate // double, eg 20.0 (max 8 chars), required\n     taxCode // int eg 1 (max 2 chars), required\n     discount // double eg 25.0 (max 8 chars), required\n     comment1 // String (max 60 chars), optional\n     comment2 // String (max 60 chars), optional\n     nominal // String (max 8 chars), optional\n     dueDate // String (dd/mm/yyyy), optional\n     departmentNumber // Int (max 2 chars), required\n     projectRef // Int, optional\n     costCode //  Int, (max 2 chars) optional\n     qtyInvoiced // Int, (max 2 chars) optional\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","purchaseOrder"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fd77324f-28db-48ac-9969-698ba5922fc4","name":"Create Purchase Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"supplierAccountRef\": \"con001\",\r\n    \"telephoneNumber\": \"01744697929\",\r\n    \"userName\": \"Hyperext\",\r\n    \"delName\": \"Hyperext\",\r\n    \"delAddress1\": \"Hyperext\",\r\n    \"delAddress2\": \"Unity House\",\r\n    \"delAddress3\": \"Wigan\",\r\n    \"delAddress4\": \"Westwood Park\",\r\n    \"delAddress5\": \"WN3 4HE\",\r\n    \"contactName\": \"Hyperext\",\r\n    \"carriageNet\": 0.0,\r\n    \"carriageTax\": 0.0,\r\n    \"globalDiscountRate\": 0.0,\r\n    \"supplierOrderNumber\": \"9633\",\r\n    \"currency\": 1,\r\n    \"departmentNumber\": 4,\r\n    \"analysis1\": \"analysis1\",\r\n    \"analysis2\": \"analysis2\",\r\n    \"analysis3\": \"analysis3\",\r\n    \"invoiceItems\": [\r\n        {\r\n            \"stockCode\": \"S1\",\r\n            \"description\": \"description\",\r\n            \"nominal\": \"5000\",\r\n            \"details\": \"\",\r\n            \"taxCode\": 1,\r\n            \"taxRate\": 20.0,\r\n            \"quantity\": 1.0,\r\n            \"unitPrice\": 100.0,\r\n            \"discount\": 0.0\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/purchaseOrder"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 16 Jul 2024 15:13:35 GMT"},{"key":"Content-Length","value":"89"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 43,\n    \"message\": \"Purchase order created successfully\"\n}"}],"_postman_id":"3f207044-98a6-480f-b1d3-4fa225df214a"},{"name":"Update Purchase Order","id":"3d2e8c56-c471-4513-85c7-87238ec3cd01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"supplierAccountRef\": \"TRU001\",\r\n    \"userName\": \"TRU001\",\r\n    \"carriageNet\": 0,\r\n    \"carriageTax\": 0,\r\n    \"dueDate\": \"\",\r\n    \"supplierName\": \"Truflame Welding Equipment\",\r\n    \"delAddress1\": \"T-H-E Section Bending Co Ltd, Houghton Road, North Anston Tr\",\r\n    \"delAddress2\": \"Sheffield\",\r\n    \"delAddress3\": \"South Yorkshire\",\r\n    \"delAddress4\": \"S25 4JJ\",\r\n    \"delAddress5\": \"GB\",\r\n    \"notes1\": \"Flashback Arrestors\",\r\n    \"invoiceItems\": [\r\n        {\r\n            \"stockCode\": \"S3\",\r\n            \"taxCode\": 1,\r\n            \"departmentNumber\": 1,\r\n            \"dueDate\": \"\",\r\n            \"discount\": 0,\r\n            \"nominal\": \"6702\",\r\n            \"unitPrice\": 15.75,\r\n            \"quantity\": 12,\r\n            \"taxRate\": 20,\r\n            \"description\": \"Flashback Arrestor - Oxygen\",\r\n            \"details\": \"HI-LO ELITE DGN FLASHBACK ARRESTOR OXYGEN\\r\\n\",\r\n            \"lineInformation\": \"Stock\",\r\n            \"serviceFlag\": 1\r\n        },\r\n        {\r\n            \"stockCode\": \"S3\",\r\n            \"taxCode\": 1,\r\n            \"departmentNumber\": 1,\r\n            \"dueDate\": \"\",\r\n            \"discount\": 0,\r\n            \"nominal\": \"6702\",\r\n            \"unitPrice\": 15.75,\r\n            \"quantity\": 8,\r\n            \"taxRate\": 20,\r\n            \"description\": \"Flashback Arrestor - Fuel Gas\",\r\n            \"details\": \"HI-LO ELITE DGN FLASHBACK ARRESTOR FUEL GAS\\r\\n\",\r\n            \"lineInformation\": \"Stock\",\r\n            \"serviceFlag\": 1\r\n        }\r\n    ],\r\n    \"orderNumber\": 731154\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/purchaseOrder/","description":"<h2 id=\"patch-update-purchase-order\">Patch Update Purchase Order</h2>\n<ul>\n<li><p>Description: Updates Purchase Order</p>\n</li>\n<li><p>Endpoint URL: <code>api/purchaseOrder</code></p>\n</li>\n<li><p>Method: <code>PATCH</code></p>\n</li>\n<li><p>NOTES:</p>\n</li>\n</ul>\n<p>This endpoint should only be used if you wish to add more line items to an existing Purchase Order. For any other changes use endpoint api/purchaseOrder/Update</p>\n<ul>\n<li>Parameters: orderNumber</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\"> supplierAccountRef // String (max 8 chars), required\n telephoneNumber // String(max 11 chars), optional\n reference // String (max 7 chars), optional\n orderNumber // Int (max 8 chars), optional on POST required for PATCH\n supplierName // String (max 30 chars), optional\n orderDate // String (dd/mm/yyyy), optional\n userName // String (max 30 chars), required\n contactName // String (max 30 chars), optional\n address1 // String (max 60 chars), optional\n address2 // String (max 60 chars), optional\n address3 // String (max 60 chars), optional\n address4 // String (max 60 chars), optional\n address5 // String (max 60 chars), optional\n delName // String (max 60 chars), optional\n delAddress1 // String (max 60 chars), optional\n delAddress2 // String (max 60 chars), optional\n delAddress3 // String (max 60 chars), optional\n delAddress4 // String (max 60 chars), optional\n delAddress5 // String (max 60 chars), optional\n notes1 // String (max 60 chars), optional\n notes2 // String (max 60 chars), optional\n notes3 // String (max 60 chars), optional\n carriageNet // Double (max 8 chars), required \n carriageTax // Double (max 60 chars), required\n carriageDepartmentNumber // Double (max 8 chars), optional \n currency // Int (max 2 chars), optional, use values from sage Settings &gt; Currencies\n supplierOrderNumber // string (max 60 chars), optional\n departmentNumber // Int (max 2 chars), optional\n projectID // int (max 4 chars), optional\n costCodeID // int (max 4 chars), optional\n dueDate // String (dd/mm/yyyy), optional\n analysis1 // optional, string, max 30 chars\n analysis2 // optional, string, max 30 chars\n analysis3 // optional, string, max 30 chars\n invoiceItems\n     stockCode  // String (max 30 chars), optional\n     description // String (max 120 chars), optional\n     quantity // double eg 20.0 (max 8 chars), required\n     details // String, optional\n     unitPrice // double eg 20.0 (max 8 chars), required\n     taxRate // double, eg 20.0 (max 8 chars), required\n     taxCode // int eg 1 (max 2 chars), required\n     discount // double eg 25.0 (max 8 chars), required\n     comment1 // String (max 60 chars), optional\n     comment2 // String (max 60 chars), optional\n     nominal // String (max 8 chars), optional\n     dueDate // String (dd/mm/yyyy), optional\n     departmentNumber // Int (max 2 chars), required\n     projectRef // Int, optional\n     costCode //  Int, (max 2 chars), optional\n     qtyInvoiced // Int, (max 2 chars), optional\n     quantityDiff // Int, (max 8 chars), SEE NOTES\n\n</code></pre>\n<ul>\n<li>Notes:</li>\n</ul>\n<p>Field \"quantityDiff\" is required when updating a purchase order which is marked as ON-ORDER. To use this, set the \"quantity\" to the required amount and the \"quantityDiff\" is the difference. For example if you wish to update the purchase order item from 1 to 5, you set the \"quantity\" to 5 and the \"quantityDiff\" to 4. You can use a negative \"quantityDiff\" to reduce the quantity</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","purchaseOrder",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"613517d4-c801-4dea-99fb-1342fd1d0156","name":"Update Purchase Order","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"supplierAccountRef\": \"con001\",\r\n    \"orderNumber\": 42,\r\n    \"orderDate\": \"19/10/2021\",\r\n    \"telephoneNumber\": \"12345678\",\r\n    \"supplierName\": \"Test Company\",\r\n    \"contactName\": \"name\",\r\n    \"userName\": \"Stefano\",\r\n    \"delName\": \"Billy Bouncer\",\r\n    \"delAddress1\": \"Dublin\",\r\n    \"delAddress2\": \"add2\",\r\n    \"delAddress3\": \"Dublin\",\r\n    \"delAddress4\": \"Dublin\",\r\n    \"delAddress5\": \"add5\",\r\n    \"carriageNet\": 30.0,\r\n    \"carriageTax\": 6.0,\r\n    \"carriageNomCode\": \"5000\",\r\n    \"globalDiscountRate\": 0.0,\r\n    \"supplierOrderNumber\": \"90210\",\r\n    \"status\": 0,\r\n    \"currency\": 24,\r\n    \"departmentNumber\": 3,\r\n    \"dueDate\": null,\r\n    \"projectID\": 0,\r\n    \"costCodeID\": 0,\r\n    \"invoiceItems\": [\r\n        {\r\n            \"stockCode\": \"S1\",\r\n            \"description\": \"test jasd\",\r\n            \"nominal\": \"5002\",\r\n            \"details\": \"\",\r\n            \"taxCode\": 0,\r\n            \"taxRate\": 0.0,\r\n            \"quantity\": 1.0,\r\n            \"unitPrice\": 1.0,\r\n            \"discount\": 0.0,\r\n            \"departmentNumber\": null\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/purchaseOrder/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 14:55:27 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 42,\n    \"message\": null\n}"}],"_postman_id":"3d2e8c56-c471-4513-85c7-87238ec3cd01"},{"name":"NEW Update Purchase Order","id":"fc6733d2-384f-4f5b-a214-e056c676de76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"supplierAccountRef\": \"TRU001\",\r\n    \"userName\": \"TRU001\",\r\n    \"carriageNet\": 0,\r\n    \"carriageTax\": 0,\r\n    \"dueDate\": \"\",\r\n    \"supplierName\": \"Truflame Welding Equipment\",\r\n    \"delAddress1\": \"T-H-E Section Bending Co Ltd, Houghton Road, North Anston Tr\",\r\n    \"delAddress2\": \"Sheffield\",\r\n    \"delAddress3\": \"South Yorkshire\",\r\n    \"delAddress4\": \"S25 4JJ\",\r\n    \"delAddress5\": \"GB\",\r\n    \"notes1\": \"Flashback Arrestors\",\r\n    \"invoiceItems\": [\r\n        {\r\n            \"stockCode\": \"S3\",\r\n            \"taxCode\": 1,\r\n            \"departmentNumber\": 1,\r\n            \"dueDate\": \"\",\r\n            \"discount\": 0,\r\n            \"nominal\": \"6702\",\r\n            \"unitPrice\": 15.75,\r\n            \"quantity\": 12,\r\n            \"taxRate\": 20,\r\n            \"description\": \"Flashback Arrestor - Oxygen\",\r\n            \"details\": \"HI-LO ELITE DGN FLASHBACK ARRESTOR OXYGEN\\r\\n\",\r\n            \"lineInformation\": \"Stock\",\r\n            \"serviceFlag\": 1\r\n        },\r\n        {\r\n            \"stockCode\": \"S3\",\r\n            \"taxCode\": 1,\r\n            \"departmentNumber\": 1,\r\n            \"dueDate\": \"\",\r\n            \"discount\": 0,\r\n            \"nominal\": \"6702\",\r\n            \"unitPrice\": 15.75,\r\n            \"quantity\": 8,\r\n            \"taxRate\": 20,\r\n            \"description\": \"Flashback Arrestor - Fuel Gas\",\r\n            \"details\": \"HI-LO ELITE DGN FLASHBACK ARRESTOR FUEL GAS\\r\\n\",\r\n            \"lineInformation\": \"Stock\",\r\n            \"serviceFlag\": 1\r\n        }\r\n    ],\r\n    \"orderNumber\": 731154\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/purchaseOrder/update","description":"<h2 id=\"new-patch-update-purchase-order\">NEW Patch Update Purchase Order</h2>\n<ul>\n<li><p>Description: Updates Purchase Order</p>\n</li>\n<li><p>Endpoint URL: <code>api/purchaseOrder/update</code></p>\n</li>\n<li><p>Method: <code>PATCH</code></p>\n</li>\n<li><p>NOTES</p>\n</li>\n</ul>\n<p>This endpoint can NOT be used to add more lines to an existing Purchase Order. If you wish to update an existing Purchase Order and add more lines you would need to use endpoint - <code>api/purchaseOrder</code>  </p>\n<ul>\n<li>Parameters: orderNumber</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\"> supplierAccountRef // String (max 8 chars), required\n telephoneNumber // String(max 11 chars), optional\n reference // String (max 7 chars), optional\n orderNumber // Int (max 8 chars), optional on POST required for PATCH\n supplierName // String (max 30 chars), optional\n orderDate // String (dd/mm/yyyy), optional\n userName // String (max 30 chars), required\n contactName // String (max 30 chars), optional\n address1 // String (max 60 chars), optional\n address2 // String (max 60 chars), optional\n address3 // String (max 60 chars), optional\n address4 // String (max 60 chars), optional\n address5 // String (max 60 chars), optional\n delName // String (max 60 chars), optional\n delAddress1 // String (max 60 chars), optional\n delAddress2 // String (max 60 chars), optional\n delAddress3 // String (max 60 chars), optional\n delAddress4 // String (max 60 chars), optional\n delAddress5 // String (max 60 chars), optional\n notes1 // String (max 60 chars), optional\n notes2 // String (max 60 chars), optional\n notes3 // String (max 60 chars), optional\n carriageNet // Double (max 8 chars), required \n carriageTax // Double (max 60 chars), required\n carriageDepartmentNumber // Double (max 8 chars), optional \n currency // Int (max 2 chars), optional, use values from sage Settings &gt; Currencies\n supplierOrderNumber // string (max 60 chars), optional\n departmentNumber // Int (max 2 chars), optional\n projectID // int (max 4 chars), optional\n costCodeID // int (max 4 chars), optional\n dueDate // String (dd/mm/yyyy), optional\n analysis1 // optional, string, max 30 chars\n analysis2 // optional, string, max 30 chars\n analysis3 // optional, string, max 30 chars\n invoiceItems\n     stockCode  // String (max 30 chars), optional\n     description // String (max 120 chars), optional\n     quantity // double eg 20.0 (max 8 chars), required\n     details // String, optional\n     unitPrice // double eg 20.0 (max 8 chars), required\n     taxRate // double, eg 20.0 (max 8 chars), required\n     taxCode // int eg 1 (max 2 chars), required\n     discount // double eg 25.0 (max 8 chars), required\n     comment1 // String (max 60 chars), optional\n     comment2 // String (max 60 chars), optional\n     nominal // String (max 8 chars), optional\n     dueDate // String (dd/mm/yyyy), optional\n     departmentNumber // Int (max 2 chars), required\n     projectRef // Int, optional\n     costCode //  Int, (max 2 chars), optional\n     qtyInvoiced // Int, (max 2 chars), optional\n     quantityDiff // Int, (max 8 chars), SEE NOTES\n\n</code></pre>\n<ul>\n<li>Notes:</li>\n</ul>\n<p>Field \"quantityDiff\" is required when updating a purchase order which is marked as ON-ORDER. To use this, set the \"quantity\" to the required amount and the \"quantityDiff\" is the difference. For example if you wish to update the purchase order item from 1 to 5, you set the \"quantity\" to 5 and the \"quantityDiff\" to 4. You can use a negative \"quantityDiff\" to reduce the quantity</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","purchaseOrder","update"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"737ba452-f19b-4608-80ce-88632f56c428","name":"NEW Update Purchase Order","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"supplierAccountRef\": \"CON001\",\r\n    \"orderNumber\": 44,\r\n    \"delAddress1\": \"TEST2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/purchaseOrder/update"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"no-cache"},{"key":"pragma","value":"no-cache"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"expires","value":"-1"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"date","value":"Wed, 15 Apr 2026 09:22:03 GMT"},{"key":"content-length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 44,\n    \"message\": null\n}"}],"_postman_id":"fc6733d2-384f-4f5b-a214-e056c676de76"},{"name":"Read Purchase Order","id":"dc2f8409-3dca-4a69-b1f4-fc6cc615cfe4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/purchaseOrder/{{orderNumber}}","description":"<h2 id=\"get-purchase-order\">Get Purchase Order</h2>\n<ul>\n<li><p>Description: Fetches a single purchase order. If wanting to get full list of purchase orders use - api/searchPurchaseOrder.</p>\n</li>\n<li><p>Endpoint URL: <code>api/purchaseOrder/{{id}}</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: orderNumber</p>\n</li>\n</ul>\n<h2 id=\"purchase-order-status\">Purchase Order Status</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value        On Order    Delivered        \n2            Full        Blank\n3            Cancelled   Blank\n6            Full        Part\n7            Cancel      Part\n8            Blank       Complete\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","purchaseOrder","{{orderNumber}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d7c9aadd-dd00-4890-98f5-ab0b1539db54","name":"Read Purchase Order","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/purchaseOrder/1"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"no-cache"},{"key":"pragma","value":"no-cache"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"expires","value":"-1"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"date","value":"Wed, 15 Apr 2026 08:56:46 GMT"},{"key":"content-length","value":"1943"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"supplierAccountRef\": \"WIS002\",\n        \"orderNumber\": 1,\n        \"reference\": \"\",\n        \"orderDate\": \"05/01/2023\",\n        \"telephoneNumber\": \"0191 987 3897\",\n        \"supplierName\": \"Wiseman Paper Products\",\n        \"contactName\": \"Kathy Jordan\",\n        \"userName\": \"\",\n        \"delName\": \"Wiseman Paper Products\",\n        \"address1\": \"Wiseman House\",\n        \"address2\": \"Freddicks Way, Bell Estate\",\n        \"address3\": \"Newcastle Upon Tyne\",\n        \"address4\": \"\",\n        \"address5\": \"NE1 2ED\",\n        \"delAddress1\": \"Sage House\",\n        \"delAddress2\": \"Benton Park Road\",\n        \"delAddress3\": \"Newcastle Upon Tyne\",\n        \"delAddress4\": \"\",\n        \"delAddress5\": \"NE7 7LZ\",\n        \"itemsNet\": 527.4,\n        \"itemsTax\": 89.990000000000009,\n        \"notes1\": \"\",\n        \"notes2\": \"\",\n        \"notes3\": \"\",\n        \"analysis1\": \"\",\n        \"analysis2\": \"\",\n        \"analysis3\": \"\",\n        \"carriageNet\": 0,\n        \"carriageTax\": 0,\n        \"carriageNomCode\": \"\",\n        \"carriageDepartmentNumber\": 2,\n        \"globalDiscountRate\": 10,\n        \"supplierOrderNumber\": \"\",\n        \"postedCode\": 0,\n        \"status\": 8,\n        \"currency\": 0,\n        \"departmentNumber\": 0,\n        \"dueDate\": null,\n        \"projectID\": 0,\n        \"costCodeID\": 0,\n        \"invoiceItems\": [\n            {\n                \"itemId\": 2,\n                \"stockCode\": \"ENV001\",\n                \"description\": \"Envelope - White (110 x 220) Plain\",\n                \"nominal\": \"\",\n                \"details\": \"\",\n                \"taxCode\": 1,\n                \"taxRate\": 20,\n                \"quantity\": 40,\n                \"unitPrice\": 6,\n                \"discount\": 0,\n                \"departmentNumber\": 1,\n                \"comment1\": \"\",\n                \"comment2\": \"\",\n                \"projectRef\": 0,\n                \"costCode\": 0,\n                \"qtyInvoiced\": null,\n                \"dueDate\": \"\",\n                \"lineInformation\": \"\",\n                \"quantityDiff\": null\n            },\n            {\n                \"itemId\": 3,\n                \"stockCode\": \"ENV003\",\n                \"description\": \"Envelope - Brown (110 x 220) Plain\",\n                \"nominal\": \"\",\n                \"details\": \"\",\n                \"taxCode\": 1,\n                \"taxRate\": 20,\n                \"quantity\": 20,\n                \"unitPrice\": 6.3,\n                \"discount\": 0,\n                \"departmentNumber\": 1,\n                \"comment1\": \"\",\n                \"comment2\": \"\",\n                \"projectRef\": 0,\n                \"costCode\": 0,\n                \"qtyInvoiced\": null,\n                \"dueDate\": \"\",\n                \"lineInformation\": \"\",\n                \"quantityDiff\": null\n            },\n            {\n                \"itemId\": 4,\n                \"stockCode\": \"FLIP001\",\n                \"description\": \"Flip Chart - A1 Pad\",\n                \"nominal\": \"\",\n                \"details\": \"\",\n                \"taxCode\": 1,\n                \"taxRate\": 20,\n                \"quantity\": 20,\n                \"unitPrice\": 11,\n                \"discount\": 0,\n                \"departmentNumber\": 1,\n                \"comment1\": \"\",\n                \"comment2\": \"\",\n                \"projectRef\": 0,\n                \"costCode\": 0,\n                \"qtyInvoiced\": null,\n                \"dueDate\": \"\",\n                \"lineInformation\": \"\",\n                \"quantityDiff\": null\n            }\n        ]\n    },\n    \"message\": null\n}"}],"_postman_id":"dc2f8409-3dca-4a69-b1f4-fc6cc615cfe4"},{"name":"Search Purchase Orders","id":"011feb49-5b67-4be9-ab42-33b04bf0a651","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"ORDER_DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"01/01/2026\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchPurchaseOrder","description":"<h2 id=\"search-purchase-orders\">Search Purchase Orders</h2>\n<ul>\n<li><p>Description: Searches ALL purchase orders in Sage.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchPurchaseOrder</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n<h2 id=\"order-status-code\">Order Status Code</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">0 - Blank\n5 - On Order\n\n</code></pre>\n<h2 id=\"delivery-status-code\">Delivery Status Code</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">0 - Blank\n1 - Part\n2 - Delivered\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchPurchaseOrder"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"b79bdd50-844b-4963-a0fd-51ee357d6182","name":"Search Purchase Orders","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"ORDER_NUMBER\",\r\n        \"type\": \"eq\",\r\n        \"value\": \"42\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchPurchaseOrder"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 15 Aug 2024 10:59:47 GMT"},{"key":"Content-Length","value":"628"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"orderNumber\": \"42\",\n            \"reference\": \"\",\n            \"orderDate\": \"31/07/2024 00:00:00\",\n            \"accountRef\": \"CON001\",\n            \"name\": \"Concept Stationery Supplies\",\n            \"contactName\": \"Hyperext\",\n            \"address1\": \"66 New Street\",\n            \"address2\": \"Ridgeway\",\n            \"address3\": \"Newcastle upon Tyne\",\n            \"address4\": \"\",\n            \"address5\": \"NE1 4GF\",\n            \"itemsNet\": 100,\n            \"itemsTax\": 20,\n            \"itemsGross\": 120,\n            \"carrNomCode\": \"\",\n            \"carrTaxCode\": \"T0\",\n            \"carrNet\": 0,\n            \"carrTax\": 0,\n            \"carrGross\": 0,\n            \"currency\": 1,\n            \"projectID\": \"0\",\n            \"quoteStatus\": \"0\",\n            \"notes1\": \"\",\n            \"notes2\": \"\",\n            \"notes3\": \"\",\n            \"analysis1\": \"analysis1\",\n            \"analysis2\": \"analysis2\",\n            \"analysis3\": \"analysis3\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"011feb49-5b67-4be9-ab42-33b04bf0a651"},{"name":"Delete Purchase Order","id":"608e770a-d292-4d9c-abc8-b64e3c69a0af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/purchaseOrder/{{orderNumber}}","description":"<h2 id=\"cancel-purchase-order\">Cancel Purchase Order</h2>\n<ul>\n<li><p>Description: Deletes Purchase Order</p>\n</li>\n<li><p>Endpoint URL: <code>api/purchaseOrder/{id}</code></p>\n</li>\n<li><p>Method <code>DELETE</code></p>\n</li>\n<li><p>Parameters: orderNumber</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","purchaseOrder","{{orderNumber}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"83a89b28-ab91-4a95-b0e1-9442581d8d99","name":"Delete Purchase Order","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/purchaseOrder/42"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 14:58:00 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 42,\n    \"message\": null\n}"}],"_postman_id":"608e770a-d292-4d9c-abc8-b64e3c69a0af"},{"name":"Goods Received Notes","id":"f3cb4c10-f6dd-40ae-a66a-d5e303ca4031","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": 43,\r\n    \"items\": [\r\n        {\r\n            \"itemNumber\":0,\r\n            \"quantity\": 1\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/goodsReceivedNotes","description":"<h2 id=\"post-good-received-notes\">POST Good Received Notes</h2>\n<ul>\n<li><p>Description: Add received notes against PO</p>\n</li>\n<li><p>Endpoint URL: <code>api/goodsReceivedNotes</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">orderNumber // Int, required\ndate  // String, Date (dd/mm/yyyy), optional\nsupplierGrnNumber // String, Max 20 Chars, optional\n    Items\n     itemNumber // Int, required\n     quantity // Int, required\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","goodsReceivedNotes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"68369fc0-0cab-4dba-b5ef-1f163b721958","name":"Goods Received Notes","originalRequest":{"method":"POST","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": 43,\r\n    \"items\": [\r\n        {\r\n            \"itemNumber\":0,\r\n            \"quantity\": 1\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/goodsReceivedNotes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:01:04 GMT"},{"key":"Content-Length","value":"66"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": \"grns added\",\n    \"message\": null\n}"}],"_postman_id":"f3cb4c10-f6dd-40ae-a66a-d5e303ca4031"},{"name":"Search Purchase Items","id":"1b67019a-8d86-4e14-946f-c06ff4242068","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"STOCK_CODE\",\r\n        \"type\": \"like\",\r\n        \"value\": \"S1\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchPopItem","description":"<h2 id=\"search-purchase-items\">Search Purchase Items</h2>\n<ul>\n<li><p>Description: Searches Purchase Order Items</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchPopItem</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchPopItem"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8d3c1df2-a216-473e-bfc6-a5b12fc7dcdd","name":"Search Purchase Items","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"STOCK_CODE\",\r\n        \"type\": \"like\",\r\n        \"value\": \"S1\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchPopItem"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 14:58:36 GMT"},{"key":"Content-Length","value":"593"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": \"0\",\n            \"orderNumber\": \"42\",\n            \"description\": \"description\",\n            \"stockCode\": \"S1\",\n            \"qtyOrder\": 1,\n            \"unitPrice\": 100,\n            \"nominalCode\": \"5000\",\n            \"deptName\": \"Default\",\n            \"netAmount\": 100,\n            \"taxAmount\": 20,\n            \"grossAmount\": 120,\n            \"qtyAllocated\": 0,\n            \"qtyDelivered\": 0,\n            \"qtyYetToDispatch\": 0\n        },\n        {\n            \"id\": \"0\",\n            \"orderNumber\": \"42\",\n            \"description\": \"test jasd\",\n            \"stockCode\": \"S1\",\n            \"qtyOrder\": 1,\n            \"unitPrice\": 1,\n            \"nominalCode\": \"5002\",\n            \"deptName\": \"Default\",\n            \"netAmount\": 1,\n            \"taxAmount\": 0,\n            \"grossAmount\": 1,\n            \"qtyAllocated\": 0,\n            \"qtyDelivered\": 0,\n            \"qtyYetToDispatch\": 0\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"1b67019a-8d86-4e14-946f-c06ff4242068"},{"name":"Search Goods Received Notes","id":"fcd2299f-2a59-4f25-bd87-f320ee53b4df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"RECORD_MODIFY_DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"01/07/2024\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchGoodsReceivedNotes","description":"<h2 id=\"search-goods-received-notes\">Search Goods Received Notes</h2>\n<ul>\n<li><p>Description: Searches ALL Goods Received Notes in Sage.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchGoodsReceivedNotes</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchGoodsReceivedNotes"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7b4eae08-fc84-47e2-af5b-0461a7f93a5e","name":"Search Goods Received Notes","originalRequest":{"method":"POST","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"RECORD_MODIFY_DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"01/07/2024\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchGoodsReceivedNotes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:02:27 GMT"},{"key":"Content-Length","value":"392"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"grnNumber\": 9,\n            \"itemNumber\": 0,\n            \"orderNumber\": 43,\n            \"orderItem\": 0,\n            \"accountRef\": \"CON001\",\n            \"supplierGrnNumber\": \"SDOGRN\",\n            \"stockCode\": \"CALC001\",\n            \"description\": \"Calculator - Desktop\",\n            \"date\": \"03/07/2024 00:00:00\",\n            \"qtyReceived\": 1,\n            \"qtyOnOrder\": 1,\n            \"recordCreateDate\": \"03/07/2024\",\n            \"recordModifyDate\": \"03/07/2024\",\n            \"recordDeleted\": false\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"fcd2299f-2a59-4f25-bd87-f320ee53b4df"},{"name":"Search Deliveries","id":"6921030c-10d0-4b49-8270-56559b8a6ea4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"RECORD_MODIFY_DATE\",\n        \"type\": \"gte\",\n        \"value\": \"18/06/2022\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchDelivery","description":"<h2 id=\"search-deliveries\">Search Deliveries</h2>\n<ul>\n<li><p>Description: Searches ALL Deliveries in Sage.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchDelivery</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchDelivery"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"35ac6e1b-07ae-4724-bc13-878e57367a6a","name":"Search Deliveries","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\n    {\n        \"field\": \"RECORD_MODIFY_DATE\",\n        \"type\": \"gte\",\n        \"value\": \"18/06/2022\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchDelivery"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:02:48 GMT"},{"key":"Content-Length","value":"3259"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"grnNumber\": 2,\n            \"itemNumber\": 1,\n            \"orderNumber\": 37,\n            \"orderItem\": 0,\n            \"accountRef\": \"MCN001\",\n            \"supplierGrnNumber\": \"\",\n            \"stockCode\": \"PC004\",\n            \"description\": \"PC Combo Pack 4\",\n            \"date\": \"30/08/2006 00:00:00\",\n            \"qtyReceived\": 1,\n            \"qtyOnOrder\": 1,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"grnNumber\": 3,\n            \"itemNumber\": 1,\n            \"orderNumber\": 39,\n            \"orderItem\": 0,\n            \"accountRef\": \"CON001\",\n            \"supplierGrnNumber\": \"\",\n            \"stockCode\": \"BOOKS001\",\n            \"description\": \"A4 Ledger Book - 5 Column\",\n            \"date\": \"26/06/2009 00:00:00\",\n            \"qtyReceived\": 40,\n            \"qtyOnOrder\": 40,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"grnNumber\": 3,\n            \"itemNumber\": 2,\n            \"orderNumber\": 39,\n            \"orderItem\": 1,\n            \"accountRef\": \"CON001\",\n            \"supplierGrnNumber\": \"\",\n            \"stockCode\": \"ENV004\",\n            \"description\": \"Envelope - Brown (110 x 220) Window\",\n            \"date\": \"26/06/2009 00:00:00\",\n            \"qtyReceived\": 20,\n            \"qtyOnOrder\": 20,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"grnNumber\": 3,\n            \"itemNumber\": 3,\n            \"orderNumber\": 39,\n            \"orderItem\": 2,\n            \"accountRef\": \"CON001\",\n            \"supplierGrnNumber\": \"\",\n            \"stockCode\": \"LABELS002\",\n            \"description\": \"A4 Labels (38x99) - Inkjet\",\n            \"date\": \"26/06/2009 00:00:00\",\n            \"qtyReceived\": 5,\n            \"qtyOnOrder\": 15,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"grnNumber\": 4,\n            \"itemNumber\": 1,\n            \"orderNumber\": 39,\n            \"orderItem\": 2,\n            \"accountRef\": \"CON001\",\n            \"supplierGrnNumber\": \"\",\n            \"stockCode\": \"LABELS002\",\n            \"description\": \"A4 Labels (38x99) - Inkjet\",\n            \"date\": \"28/06/2009 00:00:00\",\n            \"qtyReceived\": 10,\n            \"qtyOnOrder\": 15,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"grnNumber\": 5,\n            \"itemNumber\": 1,\n            \"orderNumber\": 40,\n            \"orderItem\": 0,\n            \"accountRef\": \"SUP001\",\n            \"supplierGrnNumber\": \"\",\n            \"stockCode\": \"HAR003\",\n            \"description\": \"30gb Hard Drive\",\n            \"date\": \"28/06/2009 00:00:00\",\n            \"qtyReceived\": 10,\n            \"qtyOnOrder\": 10,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"grnNumber\": 6,\n            \"itemNumber\": 1,\n            \"orderNumber\": 41,\n            \"orderItem\": 0,\n            \"accountRef\": \"THO001\",\n            \"supplierGrnNumber\": \"\",\n            \"stockCode\": \"KEY001\",\n            \"description\": \"Standard Keyboard\",\n            \"date\": \"28/06/2009 00:00:00\",\n            \"qtyReceived\": 19,\n            \"qtyOnOrder\": 20,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"grnNumber\": 6,\n            \"itemNumber\": 2,\n            \"orderNumber\": 41,\n            \"orderItem\": 1,\n            \"accountRef\": \"THO001\",\n            \"supplierGrnNumber\": \"\",\n            \"stockCode\": \"PRN003\",\n            \"description\": \"JP010 Jet Printer\",\n            \"date\": \"28/06/2009 00:00:00\",\n            \"qtyReceived\": 1,\n            \"qtyOnOrder\": 1,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"grnNumber\": 7,\n            \"itemNumber\": 1,\n            \"orderNumber\": 41,\n            \"orderItem\": 0,\n            \"accountRef\": \"THO001\",\n            \"supplierGrnNumber\": \"\",\n            \"stockCode\": \"KEY001\",\n            \"description\": \"Standard Keyboard\",\n            \"date\": \"30/06/2009 00:00:00\",\n            \"qtyReceived\": 1,\n            \"qtyOnOrder\": 20,\n            \"recordCreateDate\": \"27/04/2010\",\n            \"recordModifyDate\": \"05/05/2023\",\n            \"recordDeleted\": false\n        },\n        {\n            \"grnNumber\": 9,\n            \"itemNumber\": 0,\n            \"orderNumber\": 43,\n            \"orderItem\": 0,\n            \"accountRef\": \"CON001\",\n            \"supplierGrnNumber\": \"SDOGRN\",\n            \"stockCode\": \"CALC001\",\n            \"description\": \"Calculator - Desktop\",\n            \"date\": \"03/07/2024 00:00:00\",\n            \"qtyReceived\": 1,\n            \"qtyOnOrder\": 1,\n            \"recordCreateDate\": \"03/07/2024\",\n            \"recordModifyDate\": \"03/07/2024\",\n            \"recordDeleted\": false\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"6921030c-10d0-4b49-8270-56559b8a6ea4"},{"name":"Post Purchase Order To Ledgers","id":"bc577060-36fb-4d0a-a58d-4591023058d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{url}}/api/purchaseOrder/{{id}}/updateLedgers","description":"<h2 id=\"post-purchase-order-to-ledgers\">Post Purchase Order To Ledgers</h2>\n<ul>\n<li><p>Description: Post Purchase Order To Ledgers and creates a Purchase Invoice.</p>\n</li>\n<li><p>Endpoint URL: <code>api/purchaseOrder/{id}/updateLedgers</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Params: orderNumber</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","purchaseOrder","{{id}}","updateLedgers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8809e0e5-b887-469e-ac36-84e790bc19df","name":"Post Purchase Order To Ledgers","originalRequest":{"method":"POST","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/purchaseOrder/42/updateLedgers"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"no-cache"},{"key":"pragma","value":"no-cache"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"expires","value":"-1"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"date","value":"Wed, 15 Apr 2026 08:45:29 GMT"},{"key":"content-length","value":"69"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 42,\n    \"message\": \"Updated ledgers\"\n}"}],"_postman_id":"bc577060-36fb-4d0a-a58d-4591023058d9"},{"name":"Update Purchase Order Items","id":"7b034f1a-0463-450f-a054-4a0df5a1449f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"itemId\": 48,\r\n    \"quantityOnOrder\": 108\r\n}"},"url":"{{url}}/api/purchaseOrderItems","description":"<h2 id=\"patch-update-purchase-order-items\">PATCH Update Purchase Order Items</h2>\n<ul>\n<li><p>Description: Updates quantityOnOrder &amp; unitPrice for a specific order item</p>\n</li>\n<li><p>Endpoint URL: <code>api/purchaseOrderItems</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">itemId // int, required\nquantityOnOrder, // double, optional\nunitPrice // double, optional\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","purchaseOrderItems"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e964ec02-fa8d-45be-8f9a-8180855ed995","name":"Update Purchase Order Items","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"itemId\": 196,\r\n    \"quantityOnOrder\": 108\r\n}"},"url":"{{url}}/api/purchaseOrderItems"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"no-cache"},{"key":"pragma","value":"no-cache"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"expires","value":"-1"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"date","value":"Wed, 15 Apr 2026 08:47:24 GMT"},{"key":"content-length","value":"57"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 196,\n    \"message\": null\n}"}],"_postman_id":"7b034f1a-0463-450f-a054-4a0df5a1449f"}],"id":"1c4b7090-c7f9-4716-907f-f5e3482d7f29","_postman_id":"1c4b7090-c7f9-4716-907f-f5e3482d7f29","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}},{"name":"Sales Invoices / Credits","item":[{"name":"Search Sales Invoices","id":"d0cc943a-aa57-4208-b55a-290dbc62bb56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"INVOICE_DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"16/01/2026\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchInvoice","description":"<h2 id=\"search-invoices\">Search Invoices</h2>\n<ul>\n<li><p>Description: Searches the INVOICE table in Sage.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchInvoice</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchInvoice"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"90a07261-b604-4eb9-b329-469ebf74c21b","name":"Search Sales Invoices","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"RECORD_MODIFY_DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"01/01/2024\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchInvoice"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 11 Mar 2025 16:01:54 GMT"},{"key":"Content-Length","value":"12991"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"invoiceNumber\": \"85\",\n            \"invoiceTypeCode\": 1,\n            \"invoiceType\": \"Product Invoice (from SOP)\",\n            \"invoiceOrCredit\": \"Invoice\",\n            \"invoiceDate\": \"19/02/2025 00:00:00\",\n            \"accountRef\": \"A1D001\",\n            \"name\": \"A1 Design Services\",\n            \"address1\": \"Hyperext\",\n            \"address2\": \"Unity House\",\n            \"address3\": \"Wigan\",\n            \"address4\": \"Westwood Park\",\n            \"address5\": \"WN3 4HE\",\n            \"cAddress1\": \"Hyperext\",\n            \"cAddress2\": \"Unity House\",\n            \"cAddress3\": \"Wigan\",\n            \"cAddress4\": \"Westwood Park\",\n            \"cAddress5\": \"WN3 4HE\",\n            \"delName\": \"\",\n            \"delAddress1\": \"Hyperext\",\n            \"delAddress2\": \"Unity House\",\n            \"delAddress3\": \"Wigan\",\n            \"delAddress4\": \"Westwood Park\",\n            \"delAddress5\": \"WN3 4HE\",\n            \"vatRegNumber\": \"\",\n            \"orderNumber\": \"32\",\n            \"orderNumberNumeric\": \"32\",\n            \"contactName\": \"Hyperext\",\n            \"takenBy\": \"\",\n            \"custOrderNumber\": \"1001\",\n            \"custTelNumber\": \"01744697929\",\n            \"notes1\": \"Notes1\",\n            \"notes2\": \"\",\n            \"notes3\": \"\",\n            \"custDiscRate\": 0,\n            \"foreignItemsNet\": 1000,\n            \"foreignItemsTax\": 200,\n            \"foreignItemsGross\": 1200,\n            \"itemsNet\": 1000,\n            \"itemsTax\": 200,\n            \"itemsGross\": 1200,\n            \"taxRate1\": 20,\n            \"taxRate2\": 0,\n            \"taxRate3\": 0,\n            \"taxRate4\": 0,\n            \"taxRate5\": 0,\n            \"netAmount1\": 1000,\n            \"netAmount2\": 0,\n            \"netAmount3\": 0,\n            \"netAmount4\": 0,\n            \"netAmount5\": 0,\n            \"taxAmount1\": 200,\n            \"taxAmount2\": 0,\n            \"taxAmount3\": 0,\n            \"taxAmount4\": 0,\n            \"taxAmount5\": 0,\n            \"globalNomCode\": \"\",\n            \"globalDetails\": \"\",\n            \"globalTaxCode\": \"T0\",\n            \"globalDeptNumber\": \"0\",\n            \"globalDeptName\": \"Default\",\n            \"courierNumber\": \"1\",\n            \"courierName\": \"Royal Mail\",\n            \"consignment\": \"\",\n            \"carrNomCode\": \"\",\n            \"carrTaxCode\": \"T0\",\n            \"carrDeptNumber\": \"0\",\n            \"carrDeptName\": \"Default\",\n            \"foreignCarrNet\": 0,\n            \"foreignCarrTax\": 0,\n            \"foreignCarrGross\": 0,\n            \"carrNet\": 0,\n            \"carrTax\": 0,\n            \"carrGross\": 0,\n            \"foreignInvoiceNet\": 1000,\n            \"foreignInvoiceTax\": 200,\n            \"foreignInvoiceGross\": 1200,\n            \"invoiceNet\": 1000,\n            \"invoiceTax\": 200,\n            \"invoiceGross\": 1200,\n            \"currency\": \"1\",\n            \"currencyType\": \"0\",\n            \"euroGross\": 1200,\n            \"euroRate\": 1,\n            \"foreignRate\": 1,\n            \"settlementDueDays\": \"0\",\n            \"settlementDiscRate\": 0,\n            \"foreignSettlementDiscAmount\": 0,\n            \"foreignSettlementTotal\": 1200,\n            \"foreignAmountPrepaid\": 0,\n            \"settlementDiscAmount\": 0,\n            \"settlementTotal\": 1200,\n            \"amountPrepaid\": 0,\n            \"paymentRef\": \"\",\n            \"printed\": \"\",\n            \"printedCode\": \"0\",\n            \"posted\": \"\",\n            \"postedCode\": \"0\",\n            \"quoteExpiryDate\": \"\",\n            \"quoteStatus\": \"\",\n            \"quoteStatusID\": \"0\",\n            \"recurringRef\": \"\",\n            \"dunsNumber\": \"\",\n            \"netValueDiscountAmount\": 0,\n            \"netValueDiscountRate\": 0,\n            \"netValueDiscountDescription\": \"\",\n            \"netValueDiscountComment1\": \"\",\n            \"netValueDiscountComment2\": \"\",\n            \"paymentType\": \"0\",\n            \"bankRef\": \"\",\n            \"gdnNumber\": \"0\",\n            \"projectID\": \"0\",\n            \"analysis1\": \"\",\n            \"analysis2\": \"\",\n            \"analysis3\": \"\",\n            \"paymentDueDate\": \"21/03/2025 00:00:00\",\n            \"invoicePaymentID\": \"\",\n            \"resubmitInvoicePaymentRequired\": \"0\",\n            \"containsCisReverseChargeItems\": \"0\",\n            \"recordCreateDate\": \"19/02/2025 12:55:40\",\n            \"recordModifyDate\": \"19/02/2025 12:55:40\",\n            \"recordDeleted\": \"0\"\n        },\n        {\n            \"invoiceNumber\": \"88\",\n            \"invoiceTypeCode\": 1,\n            \"invoiceType\": \"Product Invoice (from SOP)\",\n            \"invoiceOrCredit\": \"Invoice\",\n            \"invoiceDate\": \"24/03/2023 00:00:00\",\n            \"accountRef\": \"A1D001\",\n            \"name\": \"A1 Design Services\",\n            \"address1\": \"67a Station Road\",\n            \"address2\": \"\",\n            \"address3\": \"Blackpool\",\n            \"address4\": \"Lancashire\",\n            \"address5\": \"BP12 7HT\",\n            \"cAddress1\": \"67a Station Road\",\n            \"cAddress2\": \"Blackpool\",\n            \"cAddress3\": \"Lancashire\",\n            \"cAddress4\": \"BP12 7HT\",\n            \"cAddress5\": \"\",\n            \"delName\": \"\",\n            \"delAddress1\": \"\",\n            \"delAddress2\": \"\",\n            \"delAddress3\": \"\",\n            \"delAddress4\": \"\",\n            \"delAddress5\": \"\",\n            \"vatRegNumber\": \"\",\n            \"orderNumber\": \"TEST\",\n            \"orderNumberNumeric\": \"0\",\n            \"contactName\": \"Test\",\n            \"takenBy\": \"Test\",\n            \"custOrderNumber\": \"\",\n            \"custTelNumber\": \"\",\n            \"notes1\": \"\",\n            \"notes2\": \"\",\n            \"notes3\": \"\",\n            \"custDiscRate\": 0,\n            \"foreignItemsNet\": 1,\n            \"foreignItemsTax\": 0.2,\n            \"foreignItemsGross\": 1.2,\n            \"itemsNet\": 1,\n            \"itemsTax\": 0.2,\n            \"itemsGross\": 1.2,\n            \"taxRate1\": 20,\n            \"taxRate2\": 0,\n            \"taxRate3\": 0,\n            \"taxRate4\": 0,\n            \"taxRate5\": 0,\n            \"netAmount1\": 1,\n            \"netAmount2\": 0,\n            \"netAmount3\": 0,\n            \"netAmount4\": 0,\n            \"netAmount5\": 0,\n            \"taxAmount1\": 0.2,\n            \"taxAmount2\": 0,\n            \"taxAmount3\": 0,\n            \"taxAmount4\": 0,\n            \"taxAmount5\": 0,\n            \"globalNomCode\": \"\",\n            \"globalDetails\": \"\",\n            \"globalTaxCode\": \"T0\",\n            \"globalDeptNumber\": \"0\",\n            \"globalDeptName\": \"Default\",\n            \"courierNumber\": \"1\",\n            \"courierName\": \"Royal Mail\",\n            \"consignment\": \"\",\n            \"carrNomCode\": \"4000\",\n            \"carrTaxCode\": \"T1\",\n            \"carrDeptNumber\": \"0\",\n            \"carrDeptName\": \"Default\",\n            \"foreignCarrNet\": 0,\n            \"foreignCarrTax\": 0,\n            \"foreignCarrGross\": 0,\n            \"carrNet\": 0,\n            \"carrTax\": 0,\n            \"carrGross\": 0,\n            \"foreignInvoiceNet\": 1,\n            \"foreignInvoiceTax\": 0.2,\n            \"foreignInvoiceGross\": 1.2,\n            \"invoiceNet\": 1,\n            \"invoiceTax\": 0.2,\n            \"invoiceGross\": 1.2,\n            \"currency\": \"1\",\n            \"currencyType\": \"0\",\n            \"euroGross\": 1.2,\n            \"euroRate\": 1,\n            \"foreignRate\": 1,\n            \"settlementDueDays\": \"0\",\n            \"settlementDiscRate\": 0,\n            \"foreignSettlementDiscAmount\": 0,\n            \"foreignSettlementTotal\": 1.2,\n            \"foreignAmountPrepaid\": 0,\n            \"settlementDiscAmount\": 0,\n            \"settlementTotal\": 1.2,\n            \"amountPrepaid\": 0,\n            \"paymentRef\": \"\",\n            \"printed\": \"\",\n            \"printedCode\": \"0\",\n            \"posted\": \"\",\n            \"postedCode\": \"0\",\n            \"quoteExpiryDate\": \"\",\n            \"quoteStatus\": \"\",\n            \"quoteStatusID\": \"0\",\n            \"recurringRef\": \"\",\n            \"dunsNumber\": \"\",\n            \"netValueDiscountAmount\": 0,\n            \"netValueDiscountRate\": 0,\n            \"netValueDiscountDescription\": \"\",\n            \"netValueDiscountComment1\": \"\",\n            \"netValueDiscountComment2\": \"\",\n            \"paymentType\": \"0\",\n            \"bankRef\": \"\",\n            \"gdnNumber\": \"0\",\n            \"projectID\": \"0\",\n            \"analysis1\": \"Trade\",\n            \"analysis2\": \"George\",\n            \"analysis3\": \"Lancashire\",\n            \"paymentDueDate\": \"23/04/2023 00:00:00\",\n            \"invoicePaymentID\": \"\",\n            \"resubmitInvoicePaymentRequired\": \"0\",\n            \"containsCisReverseChargeItems\": \"0\",\n            \"recordCreateDate\": \"20/02/2025 11:23:57\",\n            \"recordModifyDate\": \"20/02/2025 11:23:57\",\n            \"recordDeleted\": \"0\"\n        },\n        {\n            \"invoiceNumber\": \"89\",\n            \"invoiceTypeCode\": 1,\n            \"invoiceType\": \"Product Invoice (from SOP)\",\n            \"invoiceOrCredit\": \"Invoice\",\n            \"invoiceDate\": \"24/02/2025 00:00:00\",\n            \"accountRef\": \"A1D001\",\n            \"name\": \"A1 Design Services\",\n            \"address1\": \"Hyperext\",\n            \"address2\": \"Unity House\",\n            \"address3\": \"Wigan\",\n            \"address4\": \"Westwood Park\",\n            \"address5\": \"WN3 4HE\",\n            \"cAddress1\": \"Hyperext\",\n            \"cAddress2\": \"Unity House\",\n            \"cAddress3\": \"Wigan\",\n            \"cAddress4\": \"Westwood Park\",\n            \"cAddress5\": \"WN3 4HE\",\n            \"delName\": \"\",\n            \"delAddress1\": \"Hyperext\",\n            \"delAddress2\": \"Unity House\",\n            \"delAddress3\": \"Wigan\",\n            \"delAddress4\": \"Westwood Park\",\n            \"delAddress5\": \"WN3 4HE\",\n            \"vatRegNumber\": \"\",\n            \"orderNumber\": \"33\",\n            \"orderNumberNumeric\": \"33\",\n            \"contactName\": \"Hyperext\",\n            \"takenBy\": \"\",\n            \"custOrderNumber\": \"1001\",\n            \"custTelNumber\": \"01744697929\",\n            \"notes1\": \"Notes1\",\n            \"notes2\": \"\",\n            \"notes3\": \"\",\n            \"custDiscRate\": 0,\n            \"foreignItemsNet\": 100,\n            \"foreignItemsTax\": 20,\n            \"foreignItemsGross\": 120,\n            \"itemsNet\": 100,\n            \"itemsTax\": 20,\n            \"itemsGross\": 120,\n            \"taxRate1\": 20,\n            \"taxRate2\": 0,\n            \"taxRate3\": 0,\n            \"taxRate4\": 0,\n            \"taxRate5\": 0,\n            \"netAmount1\": 100,\n            \"netAmount2\": 0,\n            \"netAmount3\": 0,\n            \"netAmount4\": 0,\n            \"netAmount5\": 0,\n            \"taxAmount1\": 20,\n            \"taxAmount2\": 0,\n            \"taxAmount3\": 0,\n            \"taxAmount4\": 0,\n            \"taxAmount5\": 0,\n            \"globalNomCode\": \"\",\n            \"globalDetails\": \"\",\n            \"globalTaxCode\": \"T0\",\n            \"globalDeptNumber\": \"0\",\n            \"globalDeptName\": \"Default\",\n            \"courierNumber\": \"1\",\n            \"courierName\": \"Royal Mail\",\n            \"consignment\": \"\",\n            \"carrNomCode\": \"\",\n            \"carrTaxCode\": \"T0\",\n            \"carrDeptNumber\": \"0\",\n            \"carrDeptName\": \"Default\",\n            \"foreignCarrNet\": 0,\n            \"foreignCarrTax\": 0,\n            \"foreignCarrGross\": 0,\n            \"carrNet\": 0,\n            \"carrTax\": 0,\n            \"carrGross\": 0,\n            \"foreignInvoiceNet\": 100,\n            \"foreignInvoiceTax\": 20,\n            \"foreignInvoiceGross\": 120,\n            \"invoiceNet\": 100,\n            \"invoiceTax\": 20,\n            \"invoiceGross\": 120,\n            \"currency\": \"1\",\n            \"currencyType\": \"0\",\n            \"euroGross\": 120,\n            \"euroRate\": 1,\n            \"foreignRate\": 1,\n            \"settlementDueDays\": \"0\",\n            \"settlementDiscRate\": 0,\n            \"foreignSettlementDiscAmount\": 0,\n            \"foreignSettlementTotal\": 120,\n            \"foreignAmountPrepaid\": 0,\n            \"settlementDiscAmount\": 0,\n            \"settlementTotal\": 120,\n            \"amountPrepaid\": 0,\n            \"paymentRef\": \"\",\n            \"printed\": \"\",\n            \"printedCode\": \"0\",\n            \"posted\": \"Y\",\n            \"postedCode\": \"1\",\n            \"quoteExpiryDate\": \"\",\n            \"quoteStatus\": \"\",\n            \"quoteStatusID\": \"0\",\n            \"recurringRef\": \"\",\n            \"dunsNumber\": \"\",\n            \"netValueDiscountAmount\": 0,\n            \"netValueDiscountRate\": 0,\n            \"netValueDiscountDescription\": \"\",\n            \"netValueDiscountComment1\": \"\",\n            \"netValueDiscountComment2\": \"\",\n            \"paymentType\": \"0\",\n            \"bankRef\": \"\",\n            \"gdnNumber\": \"0\",\n            \"projectID\": \"0\",\n            \"analysis1\": \"\",\n            \"analysis2\": \"\",\n            \"analysis3\": \"\",\n            \"paymentDueDate\": \"26/03/2025 00:00:00\",\n            \"invoicePaymentID\": \"\",\n            \"resubmitInvoicePaymentRequired\": \"0\",\n            \"containsCisReverseChargeItems\": \"0\",\n            \"recordCreateDate\": \"24/02/2025 12:14:14\",\n            \"recordModifyDate\": \"24/02/2025 12:14:36\",\n            \"recordDeleted\": \"0\"\n        },\n        {\n            \"invoiceNumber\": \"90\",\n            \"invoiceTypeCode\": 1,\n            \"invoiceType\": \"Product Invoice (from SOP)\",\n            \"invoiceOrCredit\": \"Invoice\",\n            \"invoiceDate\": \"24/03/2023 00:00:00\",\n            \"accountRef\": \"A1D001\",\n            \"name\": \"A1 Design Services\",\n            \"address1\": \"67a Station Road\",\n            \"address2\": \"\",\n            \"address3\": \"Blackpool\",\n            \"address4\": \"Lancashire\",\n            \"address5\": \"BP12 7HT\",\n            \"cAddress1\": \"67a Station Road\",\n            \"cAddress2\": \"Blackpool\",\n            \"cAddress3\": \"Lancashire\",\n            \"cAddress4\": \"BP12 7HT\",\n            \"cAddress5\": \"\",\n            \"delName\": \"\",\n            \"delAddress1\": \"\",\n            \"delAddress2\": \"\",\n            \"delAddress3\": \"\",\n            \"delAddress4\": \"\",\n            \"delAddress5\": \"\",\n            \"vatRegNumber\": \"\",\n            \"orderNumber\": \"TEST\",\n            \"orderNumberNumeric\": \"0\",\n            \"contactName\": \"Test\",\n            \"takenBy\": \"Test\",\n            \"custOrderNumber\": \"\",\n            \"custTelNumber\": \"\",\n            \"notes1\": \"\",\n            \"notes2\": \"\",\n            \"notes3\": \"\",\n            \"custDiscRate\": 0,\n            \"foreignItemsNet\": 1,\n            \"foreignItemsTax\": 0.2,\n            \"foreignItemsGross\": 1.2,\n            \"itemsNet\": 1,\n            \"itemsTax\": 0.2,\n            \"itemsGross\": 1.2,\n            \"taxRate1\": 20,\n            \"taxRate2\": 0,\n            \"taxRate3\": 0,\n            \"taxRate4\": 0,\n            \"taxRate5\": 0,\n            \"netAmount1\": 1,\n            \"netAmount2\": 0,\n            \"netAmount3\": 0,\n            \"netAmount4\": 0,\n            \"netAmount5\": 0,\n            \"taxAmount1\": 0.2,\n            \"taxAmount2\": 0,\n            \"taxAmount3\": 0,\n            \"taxAmount4\": 0,\n            \"taxAmount5\": 0,\n            \"globalNomCode\": \"\",\n            \"globalDetails\": \"\",\n            \"globalTaxCode\": \"T0\",\n            \"globalDeptNumber\": \"0\",\n            \"globalDeptName\": \"Default\",\n            \"courierNumber\": \"1\",\n            \"courierName\": \"Royal Mail\",\n            \"consignment\": \"\",\n            \"carrNomCode\": \"4000\",\n            \"carrTaxCode\": \"T1\",\n            \"carrDeptNumber\": \"0\",\n            \"carrDeptName\": \"Default\",\n            \"foreignCarrNet\": 0,\n            \"foreignCarrTax\": 0,\n            \"foreignCarrGross\": 0,\n            \"carrNet\": 0,\n            \"carrTax\": 0,\n            \"carrGross\": 0,\n            \"foreignInvoiceNet\": 1,\n            \"foreignInvoiceTax\": 0.2,\n            \"foreignInvoiceGross\": 1.2,\n            \"invoiceNet\": 1,\n            \"invoiceTax\": 0.2,\n            \"invoiceGross\": 1.2,\n            \"currency\": \"1\",\n            \"currencyType\": \"0\",\n            \"euroGross\": 1.2,\n            \"euroRate\": 1,\n            \"foreignRate\": 1,\n            \"settlementDueDays\": \"0\",\n            \"settlementDiscRate\": 0,\n            \"foreignSettlementDiscAmount\": 0,\n            \"foreignSettlementTotal\": 1.2,\n            \"foreignAmountPrepaid\": 0,\n            \"settlementDiscAmount\": 0,\n            \"settlementTotal\": 1.2,\n            \"amountPrepaid\": 0,\n            \"paymentRef\": \"\",\n            \"printed\": \"\",\n            \"printedCode\": \"0\",\n            \"posted\": \"\",\n            \"postedCode\": \"0\",\n            \"quoteExpiryDate\": \"\",\n            \"quoteStatus\": \"\",\n            \"quoteStatusID\": \"0\",\n            \"recurringRef\": \"\",\n            \"dunsNumber\": \"\",\n            \"netValueDiscountAmount\": 0,\n            \"netValueDiscountRate\": 0,\n            \"netValueDiscountDescription\": \"\",\n            \"netValueDiscountComment1\": \"\",\n            \"netValueDiscountComment2\": \"\",\n            \"paymentType\": \"0\",\n            \"bankRef\": \"\",\n            \"gdnNumber\": \"0\",\n            \"projectID\": \"0\",\n            \"analysis1\": \"Trade\",\n            \"analysis2\": \"George\",\n            \"analysis3\": \"Lancashire\",\n            \"paymentDueDate\": \"23/04/2023 00:00:00\",\n            \"invoicePaymentID\": \"\",\n            \"resubmitInvoicePaymentRequired\": \"0\",\n            \"containsCisReverseChargeItems\": \"0\",\n            \"recordCreateDate\": \"03/03/2025 16:02:25\",\n            \"recordModifyDate\": \"03/03/2025 16:02:25\",\n            \"recordDeleted\": \"0\"\n        },\n        {\n            \"invoiceNumber\": \"91\",\n            \"invoiceTypeCode\": 1,\n            \"invoiceType\": \"Product Invoice (from SOP)\",\n            \"invoiceOrCredit\": \"Invoice\",\n            \"invoiceDate\": \"24/03/2023 00:00:00\",\n            \"accountRef\": \"A1D001\",\n            \"name\": \"CLTEST\",\n            \"address1\": \"67a Station Road\",\n            \"address2\": \"\",\n            \"address3\": \"Blackpool\",\n            \"address4\": \"Lancashire\",\n            \"address5\": \"BP12 7HT\",\n            \"cAddress1\": \"67a Station Road\",\n            \"cAddress2\": \"Blackpool\",\n            \"cAddress3\": \"Lancashire\",\n            \"cAddress4\": \"BP12 7HT\",\n            \"cAddress5\": \"\",\n            \"delName\": \"\",\n            \"delAddress1\": \"\",\n            \"delAddress2\": \"\",\n            \"delAddress3\": \"\",\n            \"delAddress4\": \"\",\n            \"delAddress5\": \"\",\n            \"vatRegNumber\": \"\",\n            \"orderNumber\": \"TEST\",\n            \"orderNumberNumeric\": \"0\",\n            \"contactName\": \"Test\",\n            \"takenBy\": \"Test\",\n            \"custOrderNumber\": \"\",\n            \"custTelNumber\": \"\",\n            \"notes1\": \"\",\n            \"notes2\": \"\",\n            \"notes3\": \"\",\n            \"custDiscRate\": 0,\n            \"foreignItemsNet\": 1,\n            \"foreignItemsTax\": 0.2,\n            \"foreignItemsGross\": 1.2,\n            \"itemsNet\": 1,\n            \"itemsTax\": 0.2,\n            \"itemsGross\": 1.2,\n            \"taxRate1\": 20,\n            \"taxRate2\": 0,\n            \"taxRate3\": 0,\n            \"taxRate4\": 0,\n            \"taxRate5\": 0,\n            \"netAmount1\": 1,\n            \"netAmount2\": 0,\n            \"netAmount3\": 0,\n            \"netAmount4\": 0,\n            \"netAmount5\": 0,\n            \"taxAmount1\": 0.2,\n            \"taxAmount2\": 0,\n            \"taxAmount3\": 0,\n            \"taxAmount4\": 0,\n            \"taxAmount5\": 0,\n            \"globalNomCode\": \"\",\n            \"globalDetails\": \"\",\n            \"globalTaxCode\": \"T0\",\n            \"globalDeptNumber\": \"0\",\n            \"globalDeptName\": \"Default\",\n            \"courierNumber\": \"1\",\n            \"courierName\": \"Royal Mail\",\n            \"consignment\": \"\",\n            \"carrNomCode\": \"4000\",\n            \"carrTaxCode\": \"T1\",\n            \"carrDeptNumber\": \"0\",\n            \"carrDeptName\": \"Default\",\n            \"foreignCarrNet\": 0,\n            \"foreignCarrTax\": 0,\n            \"foreignCarrGross\": 0,\n            \"carrNet\": 0,\n            \"carrTax\": 0,\n            \"carrGross\": 0,\n            \"foreignInvoiceNet\": 1,\n            \"foreignInvoiceTax\": 0.2,\n            \"foreignInvoiceGross\": 1.2,\n            \"invoiceNet\": 1,\n            \"invoiceTax\": 0.2,\n            \"invoiceGross\": 1.2,\n            \"currency\": \"1\",\n            \"currencyType\": \"0\",\n            \"euroGross\": 1.2,\n            \"euroRate\": 1,\n            \"foreignRate\": 1,\n            \"settlementDueDays\": \"0\",\n            \"settlementDiscRate\": 0,\n            \"foreignSettlementDiscAmount\": 0,\n            \"foreignSettlementTotal\": 1.2,\n            \"foreignAmountPrepaid\": 0,\n            \"settlementDiscAmount\": 0,\n            \"settlementTotal\": 1.2,\n            \"amountPrepaid\": 0,\n            \"paymentRef\": \"\",\n            \"printed\": \"\",\n            \"printedCode\": \"0\",\n            \"posted\": \"\",\n            \"postedCode\": \"0\",\n            \"quoteExpiryDate\": \"\",\n            \"quoteStatus\": \"\",\n            \"quoteStatusID\": \"0\",\n            \"recurringRef\": \"\",\n            \"dunsNumber\": \"\",\n            \"netValueDiscountAmount\": 0,\n            \"netValueDiscountRate\": 0,\n            \"netValueDiscountDescription\": \"\",\n            \"netValueDiscountComment1\": \"\",\n            \"netValueDiscountComment2\": \"\",\n            \"paymentType\": \"0\",\n            \"bankRef\": \"\",\n            \"gdnNumber\": \"0\",\n            \"projectID\": \"0\",\n            \"analysis1\": \"Trade\",\n            \"analysis2\": \"George\",\n            \"analysis3\": \"Lancashire\",\n            \"paymentDueDate\": \"23/04/2023 00:00:00\",\n            \"invoicePaymentID\": \"\",\n            \"resubmitInvoicePaymentRequired\": \"0\",\n            \"containsCisReverseChargeItems\": \"0\",\n            \"recordCreateDate\": \"11/03/2025 16:01:35\",\n            \"recordModifyDate\": \"11/03/2025 16:01:35\",\n            \"recordDeleted\": \"0\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"d0cc943a-aa57-4208-b55a-290dbc62bb56"},{"name":"Read Sales Invoice","id":"4509ed30-7e84-4fd8-8b33-10e78ca33835","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/salesInvoice/{{id}}","description":"<h2 id=\"get-sales-invoice\">Get Sales Invoice</h2>\n<ul>\n<li><p>Description: Fetches a single sales invoice. If wanting to get full list of sales invoices use - api/searchInvoice</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesInvoice/{id}</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: orderNumber</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesInvoice","{{id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c7dfdb2d-14c2-4cca-afa7-d9b06c682813","name":"Read Sales Invoice","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/salesInvoice/91"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 11 Mar 2025 16:01:43 GMT"},{"key":"Content-Length","value":"1566"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"invoiceNumber\": 91,\n        \"customerAccountRef\": \"A1D001\",\n        \"orderNumber\": \"TEST\",\n        \"customerOrderNumber\": \"\",\n        \"customerTelephoneNumber\": \"\",\n        \"contactName\": \"Test\",\n        \"userName\": \"Test\",\n        \"address1\": \"67a Station Road\",\n        \"address2\": \"\",\n        \"address3\": \"Blackpool\",\n        \"address4\": \"Lancashire\",\n        \"address5\": \"BP12 7HT\",\n        \"delName\": \"\",\n        \"delAddress1\": \"\",\n        \"delAddress2\": \"\",\n        \"delAddress3\": \"\",\n        \"delAddress4\": \"\",\n        \"delAddress5\": \"\",\n        \"itemsNet\": 1,\n        \"itemsTax\": 0.2,\n        \"carrNet\": 0,\n        \"carrTax\": 0,\n        \"carrNomCode\": \"4000\",\n        \"carrTaxCode\": 1,\n        \"carriageDepartmentNumber\": 0,\n        \"courierNumber\": 0,\n        \"globalDiscountRate\": null,\n        \"ignoreCustomerDiscountRate\": false,\n        \"globalTaxCode\": 0,\n        \"globalDepartmentNumber\": 0,\n        \"globalDetails\": \"\",\n        \"globalNominal\": \"\",\n        \"currency\": 1,\n        \"invoiceDate\": \"24/03/2023\",\n        \"name\": \"CLTEST\",\n        \"notes1\": \"\",\n        \"notes2\": \"\",\n        \"notes3\": \"\",\n        \"analysis1\": \"Trade\",\n        \"analysis2\": \"George\",\n        \"analysis3\": \"Lancashire\",\n        \"netValueDiscountDescription\": \"\",\n        \"netValueDiscountAmount\": 0,\n        \"foreignRate\": 1,\n        \"foreignGross\": 1.2,\n        \"paymentDueDate\": \"23/04/2023\",\n        \"settlementDueDays\": 0,\n        \"settlementDiscRate\": 0,\n        \"baseSettlementDiscRate\": 0,\n        \"posted\": false,\n        \"printed\": false,\n        \"emailed\": null,\n        \"invoiceTypeCode\": 1,\n        \"shouldUpdateLedgers\": null,\n        \"consignmentRef\": \"\",\n        \"invoiceItemsDataFromStockItemData\": null,\n        \"invoiceItems\": [\n            {\n                \"id\": 0,\n                \"stockCode\": \"S3\",\n                \"description\": \"TEST\",\n                \"nominal\": \"4000\",\n                \"details\": \"TEST\",\n                \"taxCode\": 1,\n                \"taxRate\": 20,\n                \"quantity\": 1,\n                \"unitPrice\": 1,\n                \"unitOfSale\": \"\",\n                \"discount\": 0,\n                \"netAmount\": 1,\n                \"serviceFlag\": 2,\n                \"orderRef\": null,\n                \"comment1\": \"\",\n                \"comment2\": \"\",\n                \"departmentNumber\": 0,\n                \"extOrderRef\": \"\",\n                \"projectId\": 0,\n                \"isNegativeLine\": 0\n            }\n        ]\n    },\n    \"message\": null\n}"}],"_postman_id":"4509ed30-7e84-4fd8-8b33-10e78ca33835"},{"name":"Update Sales Invoice","id":"c2d0ccb2-5cf7-4b52-9ae1-a91d0223e866","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"customerAccountRef\": \"SMOK0001\",\r\n    \"invoiceNumber\": 95,\r\n    \"orderNumber\": \"Test\",\r\n    \"invoiceDate\": \"24/03/2023\",\r\n    \"customerOrderNumber\": \"\",\r\n    \"notes2\": \"\",\r\n    \"userName\": \"Test\",\r\n    \"contactName\": \"Test\",\r\n    \"delName\": \"\",\r\n    \"delAddress1\": \"delAddress1\",\r\n    \"delAddress2\": \"delAddress2\",\r\n    \"delAddress3\": \"delAddress3\",\r\n    \"delAddress4\": \"delAddress4\",\r\n    \"delAddress5\": \"delAddress5\",\r\n    \"customerTelephoneNumber\": null,\r\n    \"carrNet\": 0,\r\n    \"carrTax\": 0,\r\n    \"carrNomCode\": 4000,\r\n    \"carrTaxCode\": 1,\r\n    \"currency\": 1,\r\n    \"shouldUpdateLedgers\": false,\r\n    \"invoiceTypeCode\": 1,\r\n    \"invoiceItems\": [\r\n        {\r\n            \"stockCode\": \"S3\",\r\n            \"description\": \"details\",\r\n            \"details\": \"details\",\r\n            \"quantity\": 1,\r\n            \"unitPrice\": 1,\r\n            \"nominal\": 4000,\r\n            \"taxCode\": 1,\r\n            \"taxRate\": 20\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/salesInvoice/","description":"<h2 id=\"patch-sales-invoice\">Patch Sales Invoice</h2>\n<ul>\n<li><p>Description: Updates a new sales invoice</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesInvoice</code></p>\n</li>\n<li><p>Method: <code>POST/PATCH</code></p>\n</li>\n<li><p>Parameters: invoiceNumber</p>\n</li>\n</ul>\n<p>NOTES:</p>\n<ul>\n<li><p>Credit Notes with invoiceTypeCode = 3 or 4 will use next Credit Number from Sage</p>\n</li>\n<li><p>If using isNegativeLine stockCode must be S1 or S3</p>\n</li>\n<li><p>Cant use discount &amp; isNegativeLine together</p>\n</li>\n<li><p>If using isNegativeLine overall invoice cant be negative</p>\n</li>\n<li><p>For field ‘invoiceItemsDStockItemData’ if true, any missing information on the invoice items will be filled in from the stock item defaults. Bare in mind this will be making a separate call for the stock data AND a separate call for the tax rate. Example JSON body for defaults below.</p>\n</li>\n<li><p>ignoreCustomerDiscountRate only available on creating invoices.</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">invoiceNumber // Int (max 7 chars), required for patch\ncustomerAccountRef // Required, String (max 8 chars) \norderNumber // String (max 7 chars), optional \ncustomerOrderNumber // String (max 60 chars), Optional\ncustomerTelephoneNumber // String (max 30 chars), optional\ncontactName // String (max 30 chars), optional \nuserName // String (max 30 chars), optional\nname // String (max 60 chars), optional\naddress1 // String (max 60 chars), optional\naddress2 // String (max 60 chars), optional\naddress3 // String (max 60 chars), optional\naddress4 // String (max 60 chars), optional\naddress5 // String (max 60 chars), optional\ndelName // String (max 30 chars), optional\ndelAddress1 // String (max 30 chars), optional\ndelAddress2 // String (max 30 chars), optional\ndelAddress3 // String (max 30 chars), optional\ndelAddress4 // String (max 30 chars), optional\ndelAddress5 // String (max 30 chars), optional\ncarrNet // Double (max 8 chars), optional\ncarrTax // Double (max 8 chars), optional\ncarrNomCode // String (max 8 chars), Optional\ncarrTaxCode // Int (max 2 chars), optional\nglobalTaxCode // Int (max 2 chars), optional\nglobalDepartmentNumber // Int (max 2 chars), optional\nglobalDetails // String (max 60 chars), optional\nglobalNominal // String (max 8 chars), optional\nnetValueDiscountDescription // String (max 60 chars), optional\nnetValueDiscountAmount // Double (max 8 chars), optional\ncurrency // Int (max 1 chars), optional, use values from sage Settings &gt; Currencies\ninvoiceDate // String, Optional, format: dd/mm/yy\ninvoiceTypeCode // Int (max 1 chars), optional, defaults to SI \nforeignRate // Double (max 8 chars), optional\ncarriageDepartmentNumber // Int (max 2 chars), optional\nnotes1 // String (max 60 chars), Optional\nnotes2 // String (max 60 chars), Optional\nnotes3 // String (max 60 chars), Optional\nsettlementDueDays // Double (max 3 chars), optional\nsettlementDiscRate // Double (max 3 chars), optional\nbaseSettlementDiscRate // Int, optional\nanalysis1 // String (max 30 chars), optional\nanalysis2 // String (max 30 chars), optional\nanalysis3 // String (max 30 chars), optional\ndepartmentNumber // Int (max 2 chars), Optional\ndiscount // double (max 8 chars), optional\nforeignGross // double (max 8 chars), optional\npaymentDueDate // string, optional\nshouldUpdateLedgers // bool, optional, defaults to false\nprinted // bool, optional\nemailed // bool, optional\ninvoiceItemsDataFromStockItemData // bool, optional\nignoreCustomerDiscountRate // bool, optional, defaults to false\ninvoiceItems\n     stockCode // String (max 30 chars), required\n     description // String (max 60 chars for V28 or older, max 120 for V29 or newer), required\n     quantity // Double (max 8 chars), required\n     unitPrice // Double (max 8 chars), required\n     unitOfSale // string, max 8 chars, optional\n     taxRate // double eg 20.0 (max 8 chars), required\n     taxCode // int eg 1 (max 2 chars), required\n     discount // double eg 25.0 (max 8 chars), optional\n     netAmount // item net after discount, double (max 8 chars), optional\n     // (use instead of discount to avoid rounding issues with\n     // fractional discount rates)\n     nominal // String (max 8 chars), optional\n     comment1 // String (mac 60 chars), optional\n     comment2 // String (mac 60 chars), optional\n     departmentNumber // Int (max 2 chars), optional\n     extOrderRef // String (max 30 chars), optional\n     projectId // int (max 4 chars), optional\n     isNegativeLine // int (max 1 chars), optional // 0 = positive amount &amp; 1 = negative amount\n     serviceFlag // int, optional (set to 2 for Service Item)\n\n</code></pre>\n<h2 id=\"invoicetypecode-field-values\">invoiceTypeCode Field values</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n0        Sales Order or Product Invoice originating from Invoicing\n1        Product Invoice originating from Sales Order Processing\n2        Service Invoice\n3        Product Credit Note\n4        Service Credit Note\n5        Product Invoice Proforma\n6        Product Invoice Quotation\n7        Service Invoice Proforma\n8        Service Invoice Quotation\n9        Sales Order Quotation\n11       Sales Order Proforma\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesInvoice",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f2062e91-8aa6-4e55-87b7-869045940506","name":"Update Sales Invoice","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"customerAccountRef\": \"SMOK0001\",\r\n    \"invoiceNumber\": 95,\r\n    \"orderNumber\": \"Test\",\r\n    \"invoiceDate\": \"24/03/2023\",\r\n    \"customerOrderNumber\": \"\",\r\n    \"notes2\": \"\",\r\n    \"userName\": \"Test\",\r\n    \"contactName\": \"Test\",\r\n    \"delName\": \"\",\r\n    \"delAddress1\": \"delAddress1\",\r\n    \"delAddress2\": \"delAddress2\",\r\n    \"delAddress3\": \"delAddress3\",\r\n    \"delAddress4\": \"delAddress4\",\r\n    \"delAddress5\": \"delAddress5\",\r\n    \"customerTelephoneNumber\": null,\r\n    \"carrNet\": 0,\r\n    \"carrTax\": 0,\r\n    \"carrNomCode\": 4000,\r\n    \"carrTaxCode\": 1,\r\n    \"currency\": 1,\r\n    \"shouldUpdateLedgers\": false,\r\n    \"invoiceTypeCode\": 1,\r\n    \"invoiceItems\": [\r\n        {\r\n            \"stockCode\": \"S3\",\r\n            \"description\": \"details\",\r\n            \"details\": \"details\",\r\n            \"quantity\": 1,\r\n            \"unitPrice\": 1,\r\n            \"nominal\": 4000,\r\n            \"taxCode\": 1,\r\n            \"taxRate\": 20\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/salesInvoice/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:11:28 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 95,\n    \"message\": null\n}"}],"_postman_id":"c2d0ccb2-5cf7-4b52-9ae1-a91d0223e866"},{"name":"Create Sales Invoice","id":"0b94c890-f479-46b7-8bc4-685fb3d47a4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"customerAccountRef\": \"SMOK0001\",\r\n    \"orderNumber\": \"Test\",\r\n    \"invoiceDate\": \"24/03/2023\",\r\n    \"customerOrderNumber\": \"\",\r\n    \"notes2\": \"\",\r\n    \"userName\": \"Test\",\r\n    \"contactName\": \"Test\",\r\n    \"delName\": \"\",\r\n    \"delAddress1\": \"\",\r\n    \"delAddress2\": \"\",\r\n    \"delAddress3\": \"\",\r\n    \"delAddress4\": \"\",\r\n    \"delAddress5\": \"\",\r\n    \"customerTelephoneNumber\": null,\r\n    \"carrNet\": 0,\r\n    \"carrTax\": 0,\r\n    \"carrNomCode\": 4000,\r\n    \"carrTaxCode\": 1,\r\n    \"currency\": 1,\r\n    \"shouldUpdateLedgers\": false,\r\n    \"invoiceTypeCode\": 1,\r\n    \"invoiceItems\": [\r\n        {\r\n            \"stockCode\": \"S3\",\r\n            \"description\": \"TEST\",\r\n            \"details\": \"TEST\",\r\n            \"quantity\": 1,\r\n            \"unitPrice\": 1,\r\n            \"nominal\": 4000,\r\n            \"taxCode\": 1,\r\n            \"taxRate\": 20\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/salesInvoice/","description":"<h2 id=\"post-sales-invoice\">Post Sales Invoice</h2>\n<ul>\n<li><p>Description: Creates a new sales invoice</p>\n</li>\n<li><p>Endpoint URL: <code>api/salesInvoice</code></p>\n</li>\n<li><p>Method: <code>POST/PATCH</code></p>\n</li>\n<li><p>Parameters: see invoiceTypeCode Field values section below</p>\n</li>\n</ul>\n<p>NOTES:</p>\n<ul>\n<li><p>Credit Notes with invoiceTypeCode = 3 or 4 will use next Credit Number from Sage</p>\n</li>\n<li><p>If using isNegativeLine stockCode must be S1 or S3</p>\n</li>\n<li><p>Cant use discount &amp; isNegativeLine together</p>\n</li>\n<li><p>If using isNegativeLine overall invoice cant be negative</p>\n</li>\n<li><p>For field ‘invoiceItemsDataFromStockItemData’ if true, any missing information on the invoice items will be filled in from the stock item defaults. Bare in mind this will be making a separate call for the stock data AND a separate call for the tax rate. Example JSON body for defaults below.</p>\n</li>\n<li><p>ignoreCustomerDiscountRate only available on creating invoices.</p>\n</li>\n<li><p>If sending non GBP transaction, currency must be set to match account posting to</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">invoiceNumber // Int (max 7 chars), required for patch\ncustomerAccountRef // Required, String (max 8 chars) \norderNumber // String (max 7 chars), optional \ncustomerOrderNumber // String (max 60 chars), Optional\ncustomerTelephoneNumber // String (max 30 chars), optional\ncontactName // String (max 30 chars), optional \nuserName // String (max 30 chars), optional\nname // String (max 60 chars), optional\naddress1 // String (max 60 chars), optional\naddress2 // String (max 60 chars), optional\naddress3 // String (max 60 chars), optional\naddress4 // String (max 60 chars), optional\naddress5 // String (max 60 chars), optional\ndelName // String (max 30 chars), optional\ndelAddress1 // String (max 30 chars), optional\ndelAddress2 // String (max 30 chars), optional\ndelAddress3 // String (max 30 chars), optional\ndelAddress4 // String (max 30 chars), optional\ndelAddress5 // String (max 30 chars), optional\ncarrNet // Double (max 8 chars), optional\ncarrTax // Double (max 8 chars), optional\ncarrNomCode // String (max 8 chars), Optional\ncarrTaxCode // Int (max 2 chars), optional\nglobalTaxCode // Int (max 2 chars), optional\nglobalDepartmentNumber // Int (max 2 chars), optional\nglobalDetails // String (max 60 chars), optional\nglobalNominal // String (max 8 chars), optional\nnetValueDiscountDescription // String (max 60 chars), optional\nnetValueDiscountAmount // Double (max 8 chars), optional\ncurrency // Int (max 1 chars), required for non GBP invoices, use values from sage Settings &gt; Currencies.\ninvoiceDate // String, Optional, format: dd/mm/yy\ninvoiceTypeCode // Int (max 1 chars), optional, defaults to SI \nforeignRate // Double (max 8 chars), optional\ncarriageDepartmentNumber // Int (max 2 chars), optional\nnotes1 // String (max 60 chars), Optional\nnotes2 // String (max 60 chars), Optional\nnotes3 // String (max 60 chars), Optional\nsettlementDueDays // Double (max 3 chars), optional\nsettlementDiscRate // Double (max 3 chars), optional\nbaseSettlementDiscRate // Int, optional\nanalysis1 // String (max 30 chars), optional\nanalysis2 // String (max 30 chars), optional\nanalysis3 // String (max 30 chars), optional\ndepartmentNumber // Int (max 2 chars), Optional\ndiscount // double (max 8 chars), optional\nforeignGross // double (max 8 chars), optional\npaymentDueDate // string, optional\nshouldUpdateLedgers // bool, optional, defaults to false\nprinted // bool, optional\nemailed // bool, optional\ninvoiceItemsDataFromStockItemData // bool, optional\nignoreCustomerDiscountRate // bool, optional, defaults to false\ninvoiceItems\n     stockCode // String (max 30 chars), required\n     description // String (max 60 chars for V28 or older, max 120 for V29 or newer), required\n     quantity // Double (max 8 chars), required\n     unitPrice // Double (max 8 chars), required\n     unitOfSale // string, max 8 chars, optional\n     taxRate // double eg 20.0 (max 8 chars), required\n     taxCode // int eg 1 (max 2 chars), required\n     discount // double eg 25.0 (max 8 chars), optional\n     netAmount // item net after discount, double (max 8 chars), optional\n     // (use instead of discount to avoid rounding issues with\n     // fractional discount rates)\n     nominal // String (max 8 chars), optional\n     comment1 // String (mac 60 chars), optional\n     comment2 // String (mac 60 chars), optional\n     departmentNumber // Int (max 2 chars), optional\n     extOrderRef // String (max 30 chars), optional\n     projectId // int (max 4 chars), optional\n     isNegativeLine // int (max 1 chars), optional // 0 = positive amount &amp; 1 = negative amount\n     serviceFlag // int, optional (set to 2 for Service Item)\n\n</code></pre>\n<h2 id=\"invoicetypecode-field-values\">invoiceTypeCode Field values</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value    Description\n0        Sales Order or Product Invoice originating from Invoicing\n1        Product Invoice originating from Sales Order Processing\n2        Service Invoice\n3        Product Credit Note\n4        Service Credit Note\n5        Product Invoice Proforma\n6        Product Invoice Quotation\n7        Service Invoice Proforma\n8        Service Invoice Quotation\n9        Sales Order Quotation\n11       Sales Order Proforma\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","salesInvoice",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5d08fc74-17ed-4865-a786-e0c7e8d00c4e","name":"Create Sales Invoice","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"customerAccountRef\": \"SMOK0001\",\r\n    \"orderNumber\": \"Test\",\r\n    \"invoiceDate\": \"24/03/2023\",\r\n    \"customerOrderNumber\": \"\",\r\n    \"notes2\": \"\",\r\n    \"userName\": \"Test\",\r\n    \"contactName\": \"Test\",\r\n    \"delName\": \"\",\r\n    \"delAddress1\": \"\",\r\n    \"delAddress2\": \"\",\r\n    \"delAddress3\": \"\",\r\n    \"delAddress4\": \"\",\r\n    \"delAddress5\": \"\",\r\n    \"customerTelephoneNumber\": null,\r\n    \"carrNet\": 0,\r\n    \"carrTax\": 0,\r\n    \"carrNomCode\": 4000,\r\n    \"carrTaxCode\": 1,\r\n    \"currency\": 1,\r\n    \"shouldUpdateLedgers\": false,\r\n    \"invoiceTypeCode\": 1,\r\n    \"invoiceItems\": [\r\n        {\r\n            \"stockCode\": \"S3\",\r\n            \"description\": \"TEST\",\r\n            \"details\": \"TEST\",\r\n            \"quantity\": 1,\r\n            \"unitPrice\": 1,\r\n            \"nominal\": 4000,\r\n            \"taxCode\": 1,\r\n            \"taxRate\": 20\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/salesInvoice/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:09:55 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 95,\n    \"message\": null\n}"}],"_postman_id":"0b94c890-f479-46b7-8bc4-685fb3d47a4e"},{"name":"Search Sales Invoice Items","id":"0f8d5f2a-61eb-4839-9821-76de4bdee6fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"RECORD_MODIFY_DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"01/01/2024\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchInvoiceItem","description":"<h2 id=\"search-invoice-items\">Search Invoice Items</h2>\n<ul>\n<li><p>Description: Searches items on invoices</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchInvoiceItem</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchInvoiceItem"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3ecf933a-c399-46b6-9ef8-5174bceae87d","name":"Search Sales Invoice Items","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"RECORD_MODIFY_DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"01/01/2024\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchInvoiceItem"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 13 May 2025 10:15:55 GMT"},{"key":"Content-Length","value":"75246"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 9,\n            \"description\": \"PC Combo Pack 4\",\n            \"stockCode\": \"PC004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 765,\n            \"quantity\": 5,\n            \"discount\": 765,\n            \"netAmount\": 3060,\n            \"foreignNetAmount\": 3060,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 9,\n            \"description\": \"PC Combo Pack 5\",\n            \"stockCode\": \"PC005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1080,\n            \"quantity\": 4,\n            \"discount\": 864,\n            \"netAmount\": 3456,\n            \"foreignNetAmount\": 3456,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 9,\n            \"description\": \"PC Combo Pack 6\",\n            \"stockCode\": \"PC006\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1350,\n            \"quantity\": 2,\n            \"discount\": 540,\n            \"netAmount\": 2160,\n            \"foreignNetAmount\": 2160,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 9,\n            \"description\": \"FX030 Multifunctional Fax\",\n            \"stockCode\": \"FAX003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 414,\n            \"quantity\": 2,\n            \"discount\": 165.6,\n            \"netAmount\": 662.4,\n            \"foreignNetAmount\": 662.4,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 9,\n            \"description\": \"Copy Paper - Premium Grade\",\n            \"stockCode\": \"PAPER003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.06,\n            \"quantity\": 100,\n            \"discount\": 61.2,\n            \"netAmount\": 244.8,\n            \"foreignNetAmount\": 244.8,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 10,\n            \"description\": \"Coloured Paper - Pastel Green\",\n            \"stockCode\": \"PAPER007\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.61,\n            \"quantity\": 10,\n            \"discount\": 2.5300000000000002,\n            \"netAmount\": 33.57,\n            \"foreignNetAmount\": 33.57,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 10,\n            \"description\": \"JP010 Jet Printer Cartridge\",\n            \"stockCode\": \"TR003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 17.1,\n            \"quantity\": 3,\n            \"discount\": 1.03,\n            \"netAmount\": 50.269999999999996,\n            \"foreignNetAmount\": 50.269999999999996,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 10,\n            \"description\": \"Scissors - Economy\",\n            \"stockCode\": \"SCI001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.85,\n            \"quantity\": 4,\n            \"discount\": 0.22999999999999998,\n            \"netAmount\": 11.17,\n            \"foreignNetAmount\": 11.17,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 10,\n            \"description\": \"Remember-Me Memo Pads\",\n            \"stockCode\": \"REMEMBER03\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 7.59,\n            \"quantity\": 10,\n            \"discount\": 12.9,\n            \"netAmount\": 63,\n            \"foreignNetAmount\": 63,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 10,\n            \"description\": \"Filing Cabinet - 3 Drawer\",\n            \"stockCode\": \"FIL001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 42.75,\n            \"quantity\": 1,\n            \"discount\": 0.85,\n            \"netAmount\": 41.9,\n            \"foreignNetAmount\": 41.9,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 10,\n            \"description\": \"Copy Paper - Premium Grade\",\n            \"stockCode\": \"PAPER003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.23,\n            \"quantity\": 48,\n            \"discount\": 26.360000000000003,\n            \"netAmount\": 128.68,\n            \"foreignNetAmount\": 128.68,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 7,\n            \"invoiceNumber\": 10,\n            \"description\": \"Envelope - White (110 x 220) Plain\",\n            \"stockCode\": \"ENV001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 8.5400000000000009,\n            \"quantity\": 24,\n            \"discount\": 34.839999999999996,\n            \"netAmount\": 170.12,\n            \"foreignNetAmount\": 170.12,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 8,\n            \"invoiceNumber\": 10,\n            \"description\": \"Envelope - Brown (110 x 220) Plain\",\n            \"stockCode\": \"ENV003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 7.12,\n            \"quantity\": 15,\n            \"discount\": 18.16,\n            \"netAmount\": 88.64,\n            \"foreignNetAmount\": 88.64,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 9,\n            \"invoiceNumber\": 10,\n            \"description\": \"FX010 Plain Paper Fax\",\n            \"stockCode\": \"FAX001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 171,\n            \"quantity\": 2,\n            \"discount\": 6.8400000000000007,\n            \"netAmount\": 335.15999999999997,\n            \"foreignNetAmount\": 335.15999999999997,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 10,\n            \"invoiceNumber\": 10,\n            \"description\": \"Flip Chart - A1 Pad\",\n            \"stockCode\": \"FLIP001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 15.2,\n            \"quantity\": 15,\n            \"discount\": 38.760000000000005,\n            \"netAmount\": 189.24,\n            \"foreignNetAmount\": 189.24,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 11,\n            \"invoiceNumber\": 10,\n            \"description\": \"A4 Labels (38x99) - Inkjet\",\n            \"stockCode\": \"LABELS002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 4.04,\n            \"quantity\": 4,\n            \"discount\": 0.32,\n            \"netAmount\": 15.84,\n            \"foreignNetAmount\": 15.84,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 12,\n            \"invoiceNumber\": 10,\n            \"description\": \"PC Combo Pack 1\",\n            \"stockCode\": \"PC001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 522.5,\n            \"quantity\": 6,\n            \"discount\": 62.7,\n            \"netAmount\": 3072.3,\n            \"foreignNetAmount\": 3072.3,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 11,\n            \"description\": \"Envelope - White (110 x 220) Window\",\n            \"stockCode\": \"ENV002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 9.02,\n            \"quantity\": 29,\n            \"discount\": 0,\n            \"netAmount\": 261.58000000000004,\n            \"foreignNetAmount\": 261.58000000000004,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 11,\n            \"description\": \"Filing Cabinet - 5 Drawer\",\n            \"stockCode\": \"FIL002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 61.75,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 123.5,\n            \"foreignNetAmount\": 123.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 11,\n            \"description\": \"Flip Chart - A1 Pad (Recycled)\",\n            \"stockCode\": \"FLIP002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 15.2,\n            \"quantity\": 27,\n            \"discount\": 0,\n            \"netAmount\": 410.4,\n            \"foreignNetAmount\": 410.4,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 11,\n            \"description\": \"Laminator - A4\",\n            \"stockCode\": \"LAM001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 71.25,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 71.25,\n            \"foreignNetAmount\": 71.25,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 11,\n            \"description\": \"Laminator Pouches - A4\",\n            \"stockCode\": \"LAM002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 11.4,\n            \"quantity\": 6,\n            \"discount\": 0,\n            \"netAmount\": 68.4,\n            \"foreignNetAmount\": 68.4,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 11,\n            \"description\": \"19\\\" Monitor\",\n            \"stockCode\": \"MON003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 228,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 228,\n            \"foreignNetAmount\": 228,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 7,\n            \"invoiceNumber\": 11,\n            \"description\": \"Mouse Mat - (241 x 203) Blue\",\n            \"stockCode\": \"MOUSE002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.42,\n            \"quantity\": 5,\n            \"discount\": 0,\n            \"netAmount\": 7.1,\n            \"foreignNetAmount\": 7.1,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 8,\n            \"invoiceNumber\": 11,\n            \"description\": \"Copy Paper - Economy Grade\",\n            \"stockCode\": \"PAPER001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.46,\n            \"quantity\": 74,\n            \"discount\": 0,\n            \"netAmount\": 182.04000000000002,\n            \"foreignNetAmount\": 182.04000000000002,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 9,\n            \"invoiceNumber\": 11,\n            \"description\": \"Coloured Paper - Pastel Blue\",\n            \"stockCode\": \"PAPER006\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.61,\n            \"quantity\": 7,\n            \"discount\": 0,\n            \"netAmount\": 25.27,\n            \"foreignNetAmount\": 25.27,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 10,\n            \"invoiceNumber\": 11,\n            \"description\": \"Ball Point Pen - Black\",\n            \"stockCode\": \"PEN001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.9,\n            \"quantity\": 7,\n            \"discount\": 0,\n            \"netAmount\": 13.3,\n            \"foreignNetAmount\": 13.3,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 11,\n            \"invoiceNumber\": 11,\n            \"description\": \"Ball Point Pen - Blue\",\n            \"stockCode\": \"PEN002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.9,\n            \"quantity\": 10,\n            \"discount\": 0,\n            \"netAmount\": 19,\n            \"foreignNetAmount\": 19,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 12,\n            \"invoiceNumber\": 11,\n            \"description\": \"Ball Point Pen - Red\",\n            \"stockCode\": \"PEN003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.9,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 3.8,\n            \"foreignNetAmount\": 3.8,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 13,\n            \"invoiceNumber\": 11,\n            \"description\": \"Pencil - HB\",\n            \"stockCode\": \"PEN004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.37,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 7.1099999999999994,\n            \"foreignNetAmount\": 7.1099999999999994,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 14,\n            \"invoiceNumber\": 11,\n            \"description\": \"Remember-Me Sticky Notes (Recycled)\",\n            \"stockCode\": \"REMEMBER02\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.32,\n            \"quantity\": 6,\n            \"discount\": 0,\n            \"netAmount\": 19.919999999999998,\n            \"foreignNetAmount\": 19.919999999999998,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 12,\n            \"description\": \"DIMM 128mb 100Mhz\",\n            \"stockCode\": \"MEM003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 98,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 392,\n            \"foreignNetAmount\": 392,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 12,\n            \"description\": \"MTH1000 Motherboard\",\n            \"stockCode\": \"MOTH001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 49,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 196,\n            \"foreignNetAmount\": 196,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 12,\n            \"description\": \"Mouse Mat - (241 x 203) Black\",\n            \"stockCode\": \"MOUSE003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.47,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 2.94,\n            \"foreignNetAmount\": 2.94,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 12,\n            \"description\": \"PCR700 Processor\",\n            \"stockCode\": \"PRC003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 196,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 784,\n            \"foreignNetAmount\": 784,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 12,\n            \"description\": \"JP010 Jet Printer\",\n            \"stockCode\": \"PRN003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 68.6,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 137.2,\n            \"foreignNetAmount\": 137.2,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 13,\n            \"description\": \"JP020 Jet Printer\",\n            \"stockCode\": \"PRN004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 171,\n            \"quantity\": 6,\n            \"discount\": 0,\n            \"netAmount\": 1026,\n            \"foreignNetAmount\": 1026,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 13,\n            \"description\": \"PC Combo Pack 2\",\n            \"stockCode\": \"PC002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 617.5,\n            \"quantity\": 5,\n            \"discount\": 0,\n            \"netAmount\": 3087.5,\n            \"foreignNetAmount\": 3087.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 13,\n            \"description\": \"JP020 Jet Printer Cartridge\",\n            \"stockCode\": \"TR004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 14.25,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 28.5,\n            \"foreignNetAmount\": 28.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 13,\n            \"description\": \"JP010 Jet Printer Cartridge\",\n            \"stockCode\": \"TR003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 17.1,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 34.2,\n            \"foreignNetAmount\": 34.2,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 14,\n            \"description\": \"DIMM 64mb 100Mhz\",\n            \"stockCode\": \"MEM002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 52.2,\n            \"quantity\": 5,\n            \"discount\": 0,\n            \"netAmount\": 261,\n            \"foreignNetAmount\": 261,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 14,\n            \"description\": \"SIMM 16mb 100Mhz\",\n            \"stockCode\": \"MEM004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 27,\n            \"quantity\": 5,\n            \"discount\": 0,\n            \"netAmount\": 135,\n            \"foreignNetAmount\": 135,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 14,\n            \"description\": \"MTH3000 Motherboard\",\n            \"stockCode\": \"MOTH003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 63,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 126,\n            \"foreignNetAmount\": 126,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 14,\n            \"description\": \"Lasercopy Paper - Standard Grade\",\n            \"stockCode\": \"PAPER005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.2,\n            \"quantity\": 34,\n            \"discount\": 0,\n            \"netAmount\": 74.8,\n            \"foreignNetAmount\": 74.8,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 14,\n            \"description\": \"Coloured Paper - Pastel Green\",\n            \"stockCode\": \"PAPER007\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.42,\n            \"quantity\": 10,\n            \"discount\": 0,\n            \"netAmount\": 34.2,\n            \"foreignNetAmount\": 34.2,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 14,\n            \"description\": \"Pencil - Chinagraph Black\",\n            \"stockCode\": \"PEN006\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 4.32,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 8.64,\n            \"foreignNetAmount\": 8.64,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 7,\n            \"invoiceNumber\": 14,\n            \"description\": \"Rubber Bands - Selection Pack (200)\",\n            \"stockCode\": \"RUB001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 5.4,\n            \"quantity\": 10,\n            \"discount\": 0,\n            \"netAmount\": 54,\n            \"foreignNetAmount\": 54,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 8,\n            \"invoiceNumber\": 14,\n            \"description\": \"Adhesive Tape - Brown (48mm x 60m)\",\n            \"stockCode\": \"TAPE001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.25,\n            \"quantity\": 14,\n            \"discount\": 0,\n            \"netAmount\": 31.5,\n            \"foreignNetAmount\": 31.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 9,\n            \"invoiceNumber\": 14,\n            \"description\": \"Adhesive Tape - Brown (50mm x 66m)\",\n            \"stockCode\": \"TAPE002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.52,\n            \"quantity\": 10,\n            \"discount\": 0,\n            \"netAmount\": 25.2,\n            \"foreignNetAmount\": 25.2,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 10,\n            \"invoiceNumber\": 14,\n            \"description\": \"JP030 Jet Printer Cartridge\",\n            \"stockCode\": \"TR005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 12.6,\n            \"quantity\": 10,\n            \"discount\": 0,\n            \"netAmount\": 126,\n            \"foreignNetAmount\": 126,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 15,\n            \"description\": \"PC Combo Pack 3\",\n            \"stockCode\": \"PC003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 735,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 2205,\n            \"foreignNetAmount\": 2205,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 15,\n            \"description\": \"SIMM 32mb 100Mhz\",\n            \"stockCode\": \"MEM005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 49,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 196,\n            \"foreignNetAmount\": 196,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 15,\n            \"description\": \"Copy Paper - Standard Grade\",\n            \"stockCode\": \"PAPER002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.8299999999999996,\n            \"quantity\": 87,\n            \"discount\": 0,\n            \"netAmount\": 246.20999999999998,\n            \"foreignNetAmount\": 246.20999999999998,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 15,\n            \"description\": \"JP010 Jet Printer\",\n            \"stockCode\": \"PRN003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 68.6,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 137.2,\n            \"foreignNetAmount\": 137.2,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 15,\n            \"description\": \"Rubber Bands - Selection Pack (200)\",\n            \"stockCode\": \"RUB001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 5.88,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 11.76,\n            \"foreignNetAmount\": 11.76,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 15,\n            \"description\": \"JP030 Jet Printer Cartridge\",\n            \"stockCode\": \"TR005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 13.72,\n            \"quantity\": 9,\n            \"discount\": 0,\n            \"netAmount\": 123.47999999999999,\n            \"foreignNetAmount\": 123.47999999999999,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 26,\n            \"description\": \"PC Combo Pack 4\",\n            \"stockCode\": \"PC004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 807.5,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 3230,\n            \"foreignNetAmount\": 3230,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 26,\n            \"description\": \"PC Combo Pack 5\",\n            \"stockCode\": \"PC005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1140,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 3420,\n            \"foreignNetAmount\": 3420,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 26,\n            \"description\": \"PC Combo Pack 6\",\n            \"stockCode\": \"PC006\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1425,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 1425,\n            \"foreignNetAmount\": 1425,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 26,\n            \"description\": \"FX030 Multifunctional Fax\",\n            \"stockCode\": \"FAX003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 437,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 874,\n            \"foreignNetAmount\": 874,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 26,\n            \"description\": \"Copy Paper - Premium Grade\",\n            \"stockCode\": \"PAPER003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.23,\n            \"quantity\": 66,\n            \"discount\": 0,\n            \"netAmount\": 213.18,\n            \"foreignNetAmount\": 213.18,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 27,\n            \"description\": \"Coloured Paper - Pastel Green\",\n            \"stockCode\": \"PAPER007\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.42,\n            \"quantity\": 7,\n            \"discount\": 0,\n            \"netAmount\": 23.94,\n            \"foreignNetAmount\": 23.94,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 27,\n            \"description\": \"JP010 Jet Printer Cartridge\",\n            \"stockCode\": \"TR003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 16.2,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 48.6,\n            \"foreignNetAmount\": 48.6,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 27,\n            \"description\": \"Scissors - Economy\",\n            \"stockCode\": \"SCI001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.7,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 10.8,\n            \"foreignNetAmount\": 10.8,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 27,\n            \"description\": \"Remember-Me Memo Pads\",\n            \"stockCode\": \"REMEMBER03\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 7.19,\n            \"quantity\": 7,\n            \"discount\": 0,\n            \"netAmount\": 50.33,\n            \"foreignNetAmount\": 50.33,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 27,\n            \"description\": \"Filing Cabinet - 3 Drawer\",\n            \"stockCode\": \"FIL001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 40.5,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 40.5,\n            \"foreignNetAmount\": 40.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 27,\n            \"description\": \"Copy Paper - Premium Grade\",\n            \"stockCode\": \"PAPER003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.06,\n            \"quantity\": 48,\n            \"discount\": 0,\n            \"netAmount\": 146.88,\n            \"foreignNetAmount\": 146.88,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 7,\n            \"invoiceNumber\": 27,\n            \"description\": \"Envelope - White (110 x 220) Plain\",\n            \"stockCode\": \"ENV001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 8.09,\n            \"quantity\": 11,\n            \"discount\": 0,\n            \"netAmount\": 88.99,\n            \"foreignNetAmount\": 88.99,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 8,\n            \"invoiceNumber\": 27,\n            \"description\": \"Envelope - Brown (110 x 220) Plain\",\n            \"stockCode\": \"ENV003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 6.75,\n            \"quantity\": 11,\n            \"discount\": 0,\n            \"netAmount\": 74.25,\n            \"foreignNetAmount\": 74.25,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 9,\n            \"invoiceNumber\": 27,\n            \"description\": \"FX010 Plain Paper Fax\",\n            \"stockCode\": \"FAX001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 162,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 324,\n            \"foreignNetAmount\": 324,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 10,\n            \"invoiceNumber\": 27,\n            \"description\": \"Flip Chart - A1 Pad\",\n            \"stockCode\": \"FLIP001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 14.4,\n            \"quantity\": 15,\n            \"discount\": 0,\n            \"netAmount\": 216,\n            \"foreignNetAmount\": 216,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 11,\n            \"invoiceNumber\": 27,\n            \"description\": \"A4 Labels (38x99) - Inkjet\",\n            \"stockCode\": \"LABELS002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.82,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 7.6400000000000006,\n            \"foreignNetAmount\": 7.6400000000000006,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 12,\n            \"invoiceNumber\": 27,\n            \"description\": \"PC Combo Pack 1\",\n            \"stockCode\": \"PC001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 495,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 1980,\n            \"foreignNetAmount\": 1980,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 28,\n            \"description\": \"Envelope - White (110 x 220) Window\",\n            \"stockCode\": \"ENV002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 9.02,\n            \"quantity\": 11,\n            \"discount\": 6.95,\n            \"netAmount\": 92.27000000000001,\n            \"foreignNetAmount\": 92.27000000000001,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 28,\n            \"description\": \"Filing Cabinet - 5 Drawer\",\n            \"stockCode\": \"FIL002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 61.75,\n            \"quantity\": 2,\n            \"discount\": 8.64,\n            \"netAmount\": 114.85999999999999,\n            \"foreignNetAmount\": 114.85999999999999,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 28,\n            \"description\": \"Flip Chart - A1 Pad (Recycled)\",\n            \"stockCode\": \"FLIP002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 15.2,\n            \"quantity\": 19,\n            \"discount\": 20.22,\n            \"netAmount\": 268.58000000000004,\n            \"foreignNetAmount\": 268.58000000000004,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 28,\n            \"description\": \"Laminator - A4\",\n            \"stockCode\": \"LAM001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 71.25,\n            \"quantity\": 1,\n            \"discount\": 4.99,\n            \"netAmount\": 66.26,\n            \"foreignNetAmount\": 66.26,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 28,\n            \"description\": \"Laminator Pouches - A4\",\n            \"stockCode\": \"LAM002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 11.4,\n            \"quantity\": 6,\n            \"discount\": 4.79,\n            \"netAmount\": 63.61,\n            \"foreignNetAmount\": 63.61,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 28,\n            \"description\": \"Mouse Mat - (241 x 203) Blue\",\n            \"stockCode\": \"MOUSE002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.42,\n            \"quantity\": 5,\n            \"discount\": 0.5,\n            \"netAmount\": 6.6,\n            \"foreignNetAmount\": 6.6,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 7,\n            \"invoiceNumber\": 28,\n            \"description\": \"Copy Paper - Economy Grade\",\n            \"stockCode\": \"PAPER001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.46,\n            \"quantity\": 74,\n            \"discount\": 12.74,\n            \"netAmount\": 169.3,\n            \"foreignNetAmount\": 169.3,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 8,\n            \"invoiceNumber\": 28,\n            \"description\": \"Coloured Paper - Pastel Blue\",\n            \"stockCode\": \"PAPER006\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.61,\n            \"quantity\": 7,\n            \"discount\": 1.77,\n            \"netAmount\": 23.5,\n            \"foreignNetAmount\": 23.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 9,\n            \"invoiceNumber\": 28,\n            \"description\": \"Ball Point Pen - Black\",\n            \"stockCode\": \"PEN001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.9,\n            \"quantity\": 3,\n            \"discount\": 0.4,\n            \"netAmount\": 5.3,\n            \"foreignNetAmount\": 5.3,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 10,\n            \"invoiceNumber\": 28,\n            \"description\": \"Ball Point Pen - Blue\",\n            \"stockCode\": \"PEN002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.9,\n            \"quantity\": 4,\n            \"discount\": 0.53,\n            \"netAmount\": 7.07,\n            \"foreignNetAmount\": 7.07,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 11,\n            \"invoiceNumber\": 28,\n            \"description\": \"Remember-Me Sticky Notes (Recycled)\",\n            \"stockCode\": \"REMEMBER02\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.32,\n            \"quantity\": 3,\n            \"discount\": 0.7,\n            \"netAmount\": 9.26,\n            \"foreignNetAmount\": 9.26,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 29,\n            \"description\": \"DIMM 128mb 100Mhz\",\n            \"stockCode\": \"MEM003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 98,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 98,\n            \"foreignNetAmount\": 98,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 29,\n            \"description\": \"MTH1000 Motherboard\",\n            \"stockCode\": \"MOTH001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 49,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 147,\n            \"foreignNetAmount\": 147,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 29,\n            \"description\": \"Mouse Mat - (241 x 203) Black\",\n            \"stockCode\": \"MOUSE003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.47,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 1.47,\n            \"foreignNetAmount\": 1.47,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 29,\n            \"description\": \"PCR700 Processor\",\n            \"stockCode\": \"PRC003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 196,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 588,\n            \"foreignNetAmount\": 588,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 29,\n            \"description\": \"JP010 Jet Printer\",\n            \"stockCode\": \"PRN003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 68.6,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 68.6,\n            \"foreignNetAmount\": 68.6,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 30,\n            \"description\": \"JP020 Jet Printer\",\n            \"stockCode\": \"PRN004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 171,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 684,\n            \"foreignNetAmount\": 684,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 30,\n            \"description\": \"PC Combo Pack 2\",\n            \"stockCode\": \"PC002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 617.5,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 2470,\n            \"foreignNetAmount\": 2470,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 31,\n            \"description\": \"DIMM 64mb 100Mhz\",\n            \"stockCode\": \"MEM002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 52.2,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 208.8,\n            \"foreignNetAmount\": 208.8,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 31,\n            \"description\": \"SIMM 16mb 100Mhz\",\n            \"stockCode\": \"MEM004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 27,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 108,\n            \"foreignNetAmount\": 108,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 31,\n            \"description\": \"MTH3000 Motherboard\",\n            \"stockCode\": \"MOTH003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 63,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 126,\n            \"foreignNetAmount\": 126,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 31,\n            \"description\": \"Lasercopy Paper - Standard Grade\",\n            \"stockCode\": \"PAPER005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.2,\n            \"quantity\": 24,\n            \"discount\": 0,\n            \"netAmount\": 52.8,\n            \"foreignNetAmount\": 52.8,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 31,\n            \"description\": \"Coloured Paper - Pastel Green\",\n            \"stockCode\": \"PAPER007\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.42,\n            \"quantity\": 10,\n            \"discount\": 0,\n            \"netAmount\": 34.2,\n            \"foreignNetAmount\": 34.2,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 31,\n            \"description\": \"Pencil - Chinagraph Black\",\n            \"stockCode\": \"PEN006\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 4.32,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 4.32,\n            \"foreignNetAmount\": 4.32,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 7,\n            \"invoiceNumber\": 31,\n            \"description\": \"Rubber Bands - Selection Pack (200)\",\n            \"stockCode\": \"RUB001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 5.4,\n            \"quantity\": 6,\n            \"discount\": 0,\n            \"netAmount\": 32.4,\n            \"foreignNetAmount\": 32.4,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 8,\n            \"invoiceNumber\": 31,\n            \"description\": \"Adhesive Tape - Brown (48mm x 60m)\",\n            \"stockCode\": \"TAPE001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.25,\n            \"quantity\": 10,\n            \"discount\": 0,\n            \"netAmount\": 22.5,\n            \"foreignNetAmount\": 22.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 9,\n            \"invoiceNumber\": 31,\n            \"description\": \"Adhesive Tape - Brown (50mm x 66m)\",\n            \"stockCode\": \"TAPE002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.52,\n            \"quantity\": 6,\n            \"discount\": 0,\n            \"netAmount\": 15.12,\n            \"foreignNetAmount\": 15.12,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 10,\n            \"invoiceNumber\": 31,\n            \"description\": \"JP030 Jet Printer Cartridge\",\n            \"stockCode\": \"TR005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 12.6,\n            \"quantity\": 10,\n            \"discount\": 0,\n            \"netAmount\": 126,\n            \"foreignNetAmount\": 126,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 43,\n            \"description\": \"PC Combo Pack 4\",\n            \"stockCode\": \"PC004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 807.5,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 3230,\n            \"foreignNetAmount\": 3230,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 43,\n            \"description\": \"PC Combo Pack 5\",\n            \"stockCode\": \"PC005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1140,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 3420,\n            \"foreignNetAmount\": 3420,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 43,\n            \"description\": \"PC Combo Pack 6\",\n            \"stockCode\": \"PC006\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1425,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 2850,\n            \"foreignNetAmount\": 2850,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 43,\n            \"description\": \"FX030 Multifunctional Fax\",\n            \"stockCode\": \"FAX003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 437,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 874,\n            \"foreignNetAmount\": 874,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 43,\n            \"description\": \"Copy Paper - Premium Grade\",\n            \"stockCode\": \"PAPER003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.23,\n            \"quantity\": 70,\n            \"discount\": 33.910000000000004,\n            \"netAmount\": 192.19,\n            \"foreignNetAmount\": 192.19,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 44,\n            \"description\": \"Coloured Paper - Pastel Green\",\n            \"stockCode\": \"PAPER007\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.61,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 7.2200000000000006,\n            \"foreignNetAmount\": 7.2200000000000006,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 44,\n            \"description\": \"JP010 Jet Printer Cartridge\",\n            \"stockCode\": \"TR003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 17.1,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 17.1,\n            \"foreignNetAmount\": 17.1,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 44,\n            \"description\": \"Scissors - Economy\",\n            \"stockCode\": \"SCI001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.85,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 8.55,\n            \"foreignNetAmount\": 8.55,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 44,\n            \"description\": \"Remember-Me Memo Pads\",\n            \"stockCode\": \"REMEMBER03\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 7.59,\n            \"quantity\": 8,\n            \"discount\": 6.07,\n            \"netAmount\": 54.65,\n            \"foreignNetAmount\": 54.65,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 44,\n            \"description\": \"Filing Cabinet - 3 Drawer\",\n            \"stockCode\": \"FIL001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 42.75,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 42.75,\n            \"foreignNetAmount\": 42.75,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 44,\n            \"description\": \"Copy Paper - Premium Grade\",\n            \"stockCode\": \"PAPER003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.23,\n            \"quantity\": 48,\n            \"discount\": 23.259999999999998,\n            \"netAmount\": 131.78,\n            \"foreignNetAmount\": 131.78,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 7,\n            \"invoiceNumber\": 44,\n            \"description\": \"Envelope - White (110 x 220) Plain\",\n            \"stockCode\": \"ENV001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 8.5400000000000009,\n            \"quantity\": 16,\n            \"discount\": 20.5,\n            \"netAmount\": 116.14000000000002,\n            \"foreignNetAmount\": 116.14000000000002,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 8,\n            \"invoiceNumber\": 44,\n            \"description\": \"Envelope - Brown (110 x 220) Plain\",\n            \"stockCode\": \"ENV003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 7.12,\n            \"quantity\": 12,\n            \"discount\": 12.819999999999999,\n            \"netAmount\": 72.62,\n            \"foreignNetAmount\": 72.62,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 9,\n            \"invoiceNumber\": 44,\n            \"description\": \"FX010 Plain Paper Fax\",\n            \"stockCode\": \"FAX001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 171,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 342,\n            \"foreignNetAmount\": 342,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 10,\n            \"invoiceNumber\": 44,\n            \"description\": \"Flip Chart - A1 Pad\",\n            \"stockCode\": \"FLIP001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 15.2,\n            \"quantity\": 10,\n            \"discount\": 22.8,\n            \"netAmount\": 129.2,\n            \"foreignNetAmount\": 129.2,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 11,\n            \"invoiceNumber\": 44,\n            \"description\": \"A4 Labels (38x99) - Inkjet\",\n            \"stockCode\": \"LABELS002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 4.04,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 12.120000000000001,\n            \"foreignNetAmount\": 12.120000000000001,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 12,\n            \"invoiceNumber\": 44,\n            \"description\": \"PC Combo Pack 1\",\n            \"stockCode\": \"PC001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 522.5,\n            \"quantity\": 5,\n            \"discount\": 0,\n            \"netAmount\": 2612.5,\n            \"foreignNetAmount\": 2612.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 45,\n            \"description\": \"Envelope - White (110 x 220) Window\",\n            \"stockCode\": \"ENV002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 8.55,\n            \"quantity\": 17,\n            \"discount\": 10.17,\n            \"netAmount\": 135.18,\n            \"foreignNetAmount\": 135.18,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 45,\n            \"description\": \"Filing Cabinet - 5 Drawer\",\n            \"stockCode\": \"FIL002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 58.5,\n            \"quantity\": 1,\n            \"discount\": 4.09,\n            \"netAmount\": 54.410000000000004,\n            \"foreignNetAmount\": 54.410000000000004,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 45,\n            \"description\": \"Flip Chart - A1 Pad (Recycled)\",\n            \"stockCode\": \"FLIP002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 14.4,\n            \"quantity\": 22,\n            \"discount\": 22.18,\n            \"netAmount\": 294.62,\n            \"foreignNetAmount\": 294.62,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 45,\n            \"description\": \"Laminator - A4\",\n            \"stockCode\": \"LAM001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 67.5,\n            \"quantity\": 1,\n            \"discount\": 4.7200000000000006,\n            \"netAmount\": 62.779999999999994,\n            \"foreignNetAmount\": 62.779999999999994,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 45,\n            \"description\": \"Laminator Pouches - A4\",\n            \"stockCode\": \"LAM002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 10.8,\n            \"quantity\": 3,\n            \"discount\": 2.27,\n            \"netAmount\": 30.130000000000003,\n            \"foreignNetAmount\": 30.130000000000003,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 45,\n            \"description\": \"19\\\" Monitor\",\n            \"stockCode\": \"MON003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 216,\n            \"quantity\": 1,\n            \"discount\": 15.12,\n            \"netAmount\": 200.88,\n            \"foreignNetAmount\": 200.88,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 7,\n            \"invoiceNumber\": 45,\n            \"description\": \"Mouse Mat - (241 x 203) Blue\",\n            \"stockCode\": \"MOUSE002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.35,\n            \"quantity\": 3,\n            \"discount\": 0.27999999999999997,\n            \"netAmount\": 3.7700000000000005,\n            \"foreignNetAmount\": 3.7700000000000005,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 8,\n            \"invoiceNumber\": 45,\n            \"description\": \"Copy Paper - Economy Grade\",\n            \"stockCode\": \"PAPER001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.33,\n            \"quantity\": 41,\n            \"discount\": 6.69,\n            \"netAmount\": 88.84,\n            \"foreignNetAmount\": 88.84,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 9,\n            \"invoiceNumber\": 45,\n            \"description\": \"Coloured Paper - Pastel Blue\",\n            \"stockCode\": \"PAPER006\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.42,\n            \"quantity\": 5,\n            \"discount\": 1.2,\n            \"netAmount\": 15.9,\n            \"foreignNetAmount\": 15.9,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 10,\n            \"invoiceNumber\": 45,\n            \"description\": \"Ball Point Pen - Black\",\n            \"stockCode\": \"PEN001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.8,\n            \"quantity\": 4,\n            \"discount\": 0.5,\n            \"netAmount\": 6.7,\n            \"foreignNetAmount\": 6.7,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 11,\n            \"invoiceNumber\": 45,\n            \"description\": \"Ball Point Pen - Blue\",\n            \"stockCode\": \"PEN002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.8,\n            \"quantity\": 6,\n            \"discount\": 0.76,\n            \"netAmount\": 10.040000000000001,\n            \"foreignNetAmount\": 10.040000000000001,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 12,\n            \"invoiceNumber\": 45,\n            \"description\": \"Ball Point Pen - Red\",\n            \"stockCode\": \"PEN003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.8,\n            \"quantity\": 1,\n            \"discount\": 0.13,\n            \"netAmount\": 1.67,\n            \"foreignNetAmount\": 1.67,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 13,\n            \"invoiceNumber\": 45,\n            \"description\": \"Pencil - HB\",\n            \"stockCode\": \"PEN004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.25,\n            \"quantity\": 2,\n            \"discount\": 0.31,\n            \"netAmount\": 4.1899999999999995,\n            \"foreignNetAmount\": 4.1899999999999995,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 14,\n            \"invoiceNumber\": 45,\n            \"description\": \"Remember-Me Sticky Notes (Recycled)\",\n            \"stockCode\": \"REMEMBER02\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.15,\n            \"quantity\": 4,\n            \"discount\": 0.88000000000000012,\n            \"netAmount\": 11.72,\n            \"foreignNetAmount\": 11.72,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 46,\n            \"description\": \"DIMM 128mb 100Mhz\",\n            \"stockCode\": \"MEM003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 95,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 190,\n            \"foreignNetAmount\": 190,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 46,\n            \"description\": \"MTH1000 Motherboard\",\n            \"stockCode\": \"MOTH001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 47.5,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 142.5,\n            \"foreignNetAmount\": 142.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 46,\n            \"description\": \"Mouse Mat - (241 x 203) Black\",\n            \"stockCode\": \"MOUSE003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.42,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 2.84,\n            \"foreignNetAmount\": 2.84,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 46,\n            \"description\": \"PCR700 Processor\",\n            \"stockCode\": \"PRC003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 190,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 570,\n            \"foreignNetAmount\": 570,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 46,\n            \"description\": \"JP010 Jet Printer\",\n            \"stockCode\": \"PRN003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 66.5,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 66.5,\n            \"foreignNetAmount\": 66.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 47,\n            \"description\": \"JP020 Jet Printer\",\n            \"stockCode\": \"PRN004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 171,\n            \"quantity\": 5,\n            \"discount\": 17.1,\n            \"netAmount\": 837.9,\n            \"foreignNetAmount\": 837.9,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 47,\n            \"description\": \"PC Combo Pack 2\",\n            \"stockCode\": \"PC002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 617.5,\n            \"quantity\": 4,\n            \"discount\": 49.4,\n            \"netAmount\": 2420.6,\n            \"foreignNetAmount\": 2420.6,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 47,\n            \"description\": \"JP020 Jet Printer Cartridge\",\n            \"stockCode\": \"TR004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 14.25,\n            \"quantity\": 2,\n            \"discount\": 0.57000000000000006,\n            \"netAmount\": 27.93,\n            \"foreignNetAmount\": 27.93,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 47,\n            \"description\": \"JP010 Jet Printer Cartridge\",\n            \"stockCode\": \"TR003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 17.1,\n            \"quantity\": 2,\n            \"discount\": 0.67999999999999994,\n            \"netAmount\": 33.519999999999996,\n            \"foreignNetAmount\": 33.519999999999996,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 48,\n            \"description\": \"DIMM 64mb 100Mhz\",\n            \"stockCode\": \"MEM002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 52.2,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 208.8,\n            \"foreignNetAmount\": 208.8,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 48,\n            \"description\": \"SIMM 16mb 100Mhz\",\n            \"stockCode\": \"MEM004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 27,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 108,\n            \"foreignNetAmount\": 108,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 48,\n            \"description\": \"MTH3000 Motherboard\",\n            \"stockCode\": \"MOTH003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 63,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 126,\n            \"foreignNetAmount\": 126,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 48,\n            \"description\": \"Coloured Paper - Pastel Green\",\n            \"stockCode\": \"PAPER007\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.42,\n            \"quantity\": 10,\n            \"discount\": 0,\n            \"netAmount\": 34.2,\n            \"foreignNetAmount\": 34.2,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 48,\n            \"description\": \"Pencil - Chinagraph Black\",\n            \"stockCode\": \"PEN006\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 4.32,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 8.64,\n            \"foreignNetAmount\": 8.64,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 7,\n            \"invoiceNumber\": 48,\n            \"description\": \"Rubber Bands - Selection Pack (200)\",\n            \"stockCode\": \"RUB001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 5.4,\n            \"quantity\": 8,\n            \"discount\": 0,\n            \"netAmount\": 43.2,\n            \"foreignNetAmount\": 43.2,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 8,\n            \"invoiceNumber\": 48,\n            \"description\": \"Adhesive Tape - Brown (48mm x 60m)\",\n            \"stockCode\": \"TAPE001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.25,\n            \"quantity\": 11,\n            \"discount\": 0,\n            \"netAmount\": 24.75,\n            \"foreignNetAmount\": 24.75,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 9,\n            \"invoiceNumber\": 48,\n            \"description\": \"Adhesive Tape - Brown (50mm x 66m)\",\n            \"stockCode\": \"TAPE002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.52,\n            \"quantity\": 7,\n            \"discount\": 0,\n            \"netAmount\": 17.64,\n            \"foreignNetAmount\": 17.64,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 10,\n            \"invoiceNumber\": 48,\n            \"description\": \"JP030 Jet Printer Cartridge\",\n            \"stockCode\": \"TR005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 12.6,\n            \"quantity\": 6,\n            \"discount\": 0,\n            \"netAmount\": 75.6,\n            \"foreignNetAmount\": 75.6,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 49,\n            \"description\": \"PC Combo Pack 3\",\n            \"stockCode\": \"PC003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 675,\n            \"quantity\": 2,\n            \"discount\": 33.75,\n            \"netAmount\": 1316.25,\n            \"foreignNetAmount\": 1316.25,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 49,\n            \"description\": \"SIMM 32mb 100Mhz\",\n            \"stockCode\": \"MEM005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 45,\n            \"quantity\": 3,\n            \"discount\": 3.37,\n            \"netAmount\": 131.63,\n            \"foreignNetAmount\": 131.63,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 49,\n            \"description\": \"Copy Paper - Standard Grade\",\n            \"stockCode\": \"PAPER002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.5999999999999996,\n            \"quantity\": 60,\n            \"discount\": 3.9,\n            \"netAmount\": 152.1,\n            \"foreignNetAmount\": 152.1,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 49,\n            \"description\": \"JP010 Jet Printer\",\n            \"stockCode\": \"PRN003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 63,\n            \"quantity\": 2,\n            \"discount\": 3.15,\n            \"netAmount\": 122.85,\n            \"foreignNetAmount\": 122.85,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 49,\n            \"description\": \"Rubber Bands - Selection Pack (200)\",\n            \"stockCode\": \"RUB001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 5.4,\n            \"quantity\": 2,\n            \"discount\": 0.27,\n            \"netAmount\": 10.53,\n            \"foreignNetAmount\": 10.53,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 49,\n            \"description\": \"JP030 Jet Printer Cartridge\",\n            \"stockCode\": \"TR005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 12.6,\n            \"quantity\": 9,\n            \"discount\": 2.83,\n            \"netAmount\": 110.57000000000001,\n            \"foreignNetAmount\": 110.57000000000001,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 63,\n            \"description\": \"PC Combo Pack 4\",\n            \"stockCode\": \"PC004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 765,\n            \"quantity\": 5,\n            \"discount\": 765,\n            \"netAmount\": 3060,\n            \"foreignNetAmount\": 3060,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 63,\n            \"description\": \"PC Combo Pack 5\",\n            \"stockCode\": \"PC005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1080,\n            \"quantity\": 4,\n            \"discount\": 864,\n            \"netAmount\": 3456,\n            \"foreignNetAmount\": 3456,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 63,\n            \"description\": \"PC Combo Pack 6\",\n            \"stockCode\": \"PC006\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1350,\n            \"quantity\": 2,\n            \"discount\": 540,\n            \"netAmount\": 2160,\n            \"foreignNetAmount\": 2160,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 63,\n            \"description\": \"FX030 Multifunctional Fax\",\n            \"stockCode\": \"FAX003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 414,\n            \"quantity\": 2,\n            \"discount\": 165.6,\n            \"netAmount\": 662.4,\n            \"foreignNetAmount\": 662.4,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 63,\n            \"description\": \"Copy Paper - Premium Grade\",\n            \"stockCode\": \"PAPER003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.06,\n            \"quantity\": 100,\n            \"discount\": 61.2,\n            \"netAmount\": 244.8,\n            \"foreignNetAmount\": 244.8,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 64,\n            \"description\": \"Envelope - White (110 x 220) Window\",\n            \"stockCode\": \"ENV002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 8.55,\n            \"quantity\": 41,\n            \"discount\": 0,\n            \"netAmount\": 350.55,\n            \"foreignNetAmount\": 350.55,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 64,\n            \"description\": \"Filing Cabinet - 5 Drawer\",\n            \"stockCode\": \"FIL002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 58.5,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 175.5,\n            \"foreignNetAmount\": 175.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 64,\n            \"description\": \"Flip Chart - A1 Pad (Recycled)\",\n            \"stockCode\": \"FLIP002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 14.4,\n            \"quantity\": 32,\n            \"discount\": 0,\n            \"netAmount\": 460.8,\n            \"foreignNetAmount\": 460.8,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 64,\n            \"description\": \"Laminator - A4\",\n            \"stockCode\": \"LAM001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 67.5,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 67.5,\n            \"foreignNetAmount\": 67.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 64,\n            \"description\": \"Laminator Pouches - A4\",\n            \"stockCode\": \"LAM002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 10.8,\n            \"quantity\": 8,\n            \"discount\": 0,\n            \"netAmount\": 86.4,\n            \"foreignNetAmount\": 86.4,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 64,\n            \"description\": \"19\\\" Monitor\",\n            \"stockCode\": \"MON003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 216,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 216,\n            \"foreignNetAmount\": 216,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 7,\n            \"invoiceNumber\": 64,\n            \"description\": \"Mouse Mat - (241 x 203) Blue\",\n            \"stockCode\": \"MOUSE002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.35,\n            \"quantity\": 7,\n            \"discount\": 0,\n            \"netAmount\": 9.45,\n            \"foreignNetAmount\": 9.45,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 8,\n            \"invoiceNumber\": 64,\n            \"description\": \"Copy Paper - Economy Grade\",\n            \"stockCode\": \"PAPER001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.33,\n            \"quantity\": 120,\n            \"discount\": 0,\n            \"netAmount\": 279.6,\n            \"foreignNetAmount\": 279.6,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 9,\n            \"invoiceNumber\": 64,\n            \"description\": \"Coloured Paper - Pastel Blue\",\n            \"stockCode\": \"PAPER006\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.42,\n            \"quantity\": 9,\n            \"discount\": 0,\n            \"netAmount\": 30.78,\n            \"foreignNetAmount\": 30.78,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 10,\n            \"invoiceNumber\": 64,\n            \"description\": \"Ball Point Pen - Black\",\n            \"stockCode\": \"PEN001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.8,\n            \"quantity\": 10,\n            \"discount\": 0,\n            \"netAmount\": 18,\n            \"foreignNetAmount\": 18,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 11,\n            \"invoiceNumber\": 64,\n            \"description\": \"Ball Point Pen - Blue\",\n            \"stockCode\": \"PEN002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.8,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 5.4,\n            \"foreignNetAmount\": 5.4,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 12,\n            \"invoiceNumber\": 64,\n            \"description\": \"Ball Point Pen - Red\",\n            \"stockCode\": \"PEN003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.8,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 7.2,\n            \"foreignNetAmount\": 7.2,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 13,\n            \"invoiceNumber\": 64,\n            \"description\": \"Pencil - HB\",\n            \"stockCode\": \"PEN004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.25,\n            \"quantity\": 8,\n            \"discount\": 0,\n            \"netAmount\": 18,\n            \"foreignNetAmount\": 18,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 14,\n            \"invoiceNumber\": 64,\n            \"description\": \"Remember-Me Sticky Notes (Recycled)\",\n            \"stockCode\": \"REMEMBER02\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.15,\n            \"quantity\": 6,\n            \"discount\": 0,\n            \"netAmount\": 18.9,\n            \"foreignNetAmount\": 18.9,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 65,\n            \"description\": \"DIMM 128mb 100Mhz\",\n            \"stockCode\": \"MEM003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 90,\n            \"quantity\": 4,\n            \"discount\": 7.2,\n            \"netAmount\": 352.8,\n            \"foreignNetAmount\": 352.8,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 65,\n            \"description\": \"MTH1000 Motherboard\",\n            \"stockCode\": \"MOTH001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 45,\n            \"quantity\": 6,\n            \"discount\": 5.4,\n            \"netAmount\": 264.6,\n            \"foreignNetAmount\": 264.6,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 65,\n            \"description\": \"Mouse Mat - (241 x 203) Black\",\n            \"stockCode\": \"MOUSE003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 1.35,\n            \"quantity\": 2,\n            \"discount\": 0.05,\n            \"netAmount\": 2.65,\n            \"foreignNetAmount\": 2.65,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 65,\n            \"description\": \"PCR700 Processor\",\n            \"stockCode\": \"PRC003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 180,\n            \"quantity\": 5,\n            \"discount\": 18,\n            \"netAmount\": 882,\n            \"foreignNetAmount\": 882,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 65,\n            \"description\": \"JP010 Jet Printer\",\n            \"stockCode\": \"PRN003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 63,\n            \"quantity\": 3,\n            \"discount\": 3.78,\n            \"netAmount\": 185.22,\n            \"foreignNetAmount\": 185.22,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 66,\n            \"description\": \"JP020 Jet Printer\",\n            \"stockCode\": \"PRN004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 171,\n            \"quantity\": 7,\n            \"discount\": 203.49,\n            \"netAmount\": 993.51,\n            \"foreignNetAmount\": 993.51,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 66,\n            \"description\": \"PC Combo Pack 2\",\n            \"stockCode\": \"PC002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 617.5,\n            \"quantity\": 6,\n            \"discount\": 629.85,\n            \"netAmount\": 3075.15,\n            \"foreignNetAmount\": 3075.15,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 66,\n            \"description\": \"JP020 Jet Printer Cartridge\",\n            \"stockCode\": \"TR004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 14.25,\n            \"quantity\": 2,\n            \"discount\": 4.84,\n            \"netAmount\": 23.66,\n            \"foreignNetAmount\": 23.66,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 66,\n            \"description\": \"JP010 Jet Printer Cartridge\",\n            \"stockCode\": \"TR003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T0\",\n            \"taxRate\": 0,\n            \"unitPrice\": 17.1,\n            \"quantity\": 4,\n            \"discount\": 11.629999999999999,\n            \"netAmount\": 56.77,\n            \"foreignNetAmount\": 56.77,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 67,\n            \"description\": \"DIMM 64mb 100Mhz\",\n            \"stockCode\": \"MEM002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 52.2,\n            \"quantity\": 6,\n            \"discount\": 0,\n            \"netAmount\": 313.2,\n            \"foreignNetAmount\": 313.2,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 67,\n            \"description\": \"SIMM 16mb 100Mhz\",\n            \"stockCode\": \"MEM004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 27,\n            \"quantity\": 6,\n            \"discount\": 0,\n            \"netAmount\": 162,\n            \"foreignNetAmount\": 162,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 67,\n            \"description\": \"MTH3000 Motherboard\",\n            \"stockCode\": \"MOTH003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 63,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 126,\n            \"foreignNetAmount\": 126,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 67,\n            \"description\": \"Lasercopy Paper - Standard Grade\",\n            \"stockCode\": \"PAPER005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.2,\n            \"quantity\": 40,\n            \"discount\": 0,\n            \"netAmount\": 88,\n            \"foreignNetAmount\": 88,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 67,\n            \"description\": \"Coloured Paper - Pastel Green\",\n            \"stockCode\": \"PAPER007\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 3.42,\n            \"quantity\": 10,\n            \"discount\": 0,\n            \"netAmount\": 34.2,\n            \"foreignNetAmount\": 34.2,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 67,\n            \"description\": \"Pencil - Chinagraph Black\",\n            \"stockCode\": \"PEN006\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 4.32,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 8.64,\n            \"foreignNetAmount\": 8.64,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 7,\n            \"invoiceNumber\": 67,\n            \"description\": \"Rubber Bands - Selection Pack (200)\",\n            \"stockCode\": \"RUB001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 5.4,\n            \"quantity\": 14,\n            \"discount\": 0,\n            \"netAmount\": 75.6,\n            \"foreignNetAmount\": 75.6,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 8,\n            \"invoiceNumber\": 67,\n            \"description\": \"Adhesive Tape - Brown (48mm x 60m)\",\n            \"stockCode\": \"TAPE001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.25,\n            \"quantity\": 17,\n            \"discount\": 0,\n            \"netAmount\": 38.25,\n            \"foreignNetAmount\": 38.25,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 9,\n            \"invoiceNumber\": 67,\n            \"description\": \"Adhesive Tape - Brown (50mm x 66m)\",\n            \"stockCode\": \"TAPE002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.52,\n            \"quantity\": 13,\n            \"discount\": 0,\n            \"netAmount\": 32.760000000000005,\n            \"foreignNetAmount\": 32.760000000000005,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 10,\n            \"invoiceNumber\": 67,\n            \"description\": \"JP030 Jet Printer Cartridge\",\n            \"stockCode\": \"TR005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 12.6,\n            \"quantity\": 14,\n            \"discount\": 0,\n            \"netAmount\": 176.4,\n            \"foreignNetAmount\": 176.4,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 68,\n            \"description\": \"PC Combo Pack 3\",\n            \"stockCode\": \"PC003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 712.5,\n            \"quantity\": 4,\n            \"discount\": 0,\n            \"netAmount\": 2850,\n            \"foreignNetAmount\": 2850,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 68,\n            \"description\": \"SIMM 32mb 100Mhz\",\n            \"stockCode\": \"MEM005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 47.5,\n            \"quantity\": 5,\n            \"discount\": 0,\n            \"netAmount\": 237.5,\n            \"foreignNetAmount\": 237.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 3,\n            \"invoiceNumber\": 68,\n            \"description\": \"Copy Paper - Standard Grade\",\n            \"stockCode\": \"PAPER002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.7499999999999996,\n            \"quantity\": 120,\n            \"discount\": 0,\n            \"netAmount\": 330,\n            \"foreignNetAmount\": 330,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 4,\n            \"invoiceNumber\": 68,\n            \"description\": \"JP010 Jet Printer\",\n            \"stockCode\": \"PRN003\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 66.5,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 133,\n            \"foreignNetAmount\": 133,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 5,\n            \"invoiceNumber\": 68,\n            \"description\": \"Rubber Bands - Selection Pack (200)\",\n            \"stockCode\": \"RUB001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 5.7,\n            \"quantity\": 2,\n            \"discount\": 0,\n            \"netAmount\": 11.4,\n            \"foreignNetAmount\": 11.4,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 6,\n            \"invoiceNumber\": 68,\n            \"description\": \"JP030 Jet Printer Cartridge\",\n            \"stockCode\": \"TR005\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 13.3,\n            \"quantity\": 9,\n            \"discount\": 0,\n            \"netAmount\": 119.7,\n            \"foreignNetAmount\": 119.7,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 0,\n            \"invoiceNumber\": 81,\n            \"description\": \"A4 Ledger Book - 5 Column\",\n            \"stockCode\": \"BOOKS001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 7.8400000000000007,\n            \"quantity\": 5,\n            \"discount\": 0,\n            \"netAmount\": 39.2,\n            \"foreignNetAmount\": 39.2,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 81,\n            \"description\": \"Flip Chart - A1 Pad\",\n            \"stockCode\": \"FLIP001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 15.680000000000002,\n            \"quantity\": 3,\n            \"discount\": 0,\n            \"netAmount\": 47.04,\n            \"foreignNetAmount\": 47.04,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 2,\n            \"invoiceNumber\": 81,\n            \"description\": \"Laminator - A4\",\n            \"stockCode\": \"LAM001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 73.5,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 73.5,\n            \"foreignNetAmount\": 73.5,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 0,\n            \"invoiceNumber\": 82,\n            \"description\": \"A4 Ledger Book - 5 Column\",\n            \"stockCode\": \"BOOKS001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 7.8400000000000007,\n            \"quantity\": 15,\n            \"discount\": 0,\n            \"netAmount\": 117.6,\n            \"foreignNetAmount\": 117.6,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 0,\n            \"invoiceNumber\": 83,\n            \"description\": \"Pencil - HB\",\n            \"stockCode\": \"PEN004\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 2.38,\n            \"quantity\": 15,\n            \"discount\": 0,\n            \"netAmount\": 35.7,\n            \"foreignNetAmount\": 35.7,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 0,\n            \"invoiceNumber\": 84,\n            \"description\": \"Flip Chart - A1 Pad (Recycled)\",\n            \"stockCode\": \"FLIP002\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 17.5,\n            \"unitPrice\": 15.2,\n            \"quantity\": 12,\n            \"discount\": 0,\n            \"netAmount\": 182.4,\n            \"foreignNetAmount\": 182.4,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:57\"\n        },\n        {\n            \"id\": 0,\n            \"invoiceNumber\": 85,\n            \"description\": \"TEST\",\n            \"stockCode\": \"S3\",\n            \"nominal\": \"4000\",\n            \"details\": \"TEST\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 20,\n            \"unitPrice\": 1,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 1,\n            \"foreignNetAmount\": 1,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"03/04/2025 16:29:48\"\n        },\n        {\n            \"id\": 0,\n            \"invoiceNumber\": 86,\n            \"description\": \"No description\",\n            \"stockCode\": \"M\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"\",\n            \"taxRate\": 0,\n            \"unitPrice\": 0,\n            \"quantity\": 0,\n            \"discount\": 0,\n            \"netAmount\": 1,\n            \"foreignNetAmount\": 0,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": -1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"03/04/2025 16:30:08\"\n        },\n        {\n            \"id\": 0,\n            \"invoiceNumber\": 87,\n            \"description\": \"No description\",\n            \"stockCode\": \"M\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"\",\n            \"taxRate\": 0,\n            \"unitPrice\": 0,\n            \"quantity\": 0,\n            \"discount\": 0,\n            \"netAmount\": 6500,\n            \"foreignNetAmount\": 0,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": -1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"03/04/2025 16:30:45\"\n        },\n        {\n            \"id\": 0,\n            \"invoiceNumber\": 94,\n            \"description\": \"tete\",\n            \"stockCode\": \"S3\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 20,\n            \"unitPrice\": 0,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 0,\n            \"foreignNetAmount\": 0,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"01/05/2025 11:03:01\"\n        },\n        {\n            \"id\": 1,\n            \"invoiceNumber\": 93,\n            \"description\": \"TEST\",\n            \"stockCode\": \"S1\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T7\",\n            \"taxRate\": 20,\n            \"unitPrice\": 1,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 1,\n            \"foreignNetAmount\": 1,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"29/04/2025 13:29:44\"\n        },\n        {\n            \"id\": 0,\n            \"invoiceNumber\": 93,\n            \"description\": \"TEST\",\n            \"stockCode\": \"S3\",\n            \"nominal\": \"4000\",\n            \"details\": \"TEST\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 20,\n            \"unitPrice\": 1,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 1,\n            \"foreignNetAmount\": 1,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"29/04/2025 13:29:44\"\n        },\n        {\n            \"id\": 0,\n            \"invoiceNumber\": 89,\n            \"description\": \"19' SCISSOR LIFT  - 1932\",\n            \"stockCode\": \"S1\",\n            \"nominal\": \"4002\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 23,\n            \"unitPrice\": 180,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 180,\n            \"foreignNetAmount\": 180,\n            \"comment1\": \"\",\n            \"comment2\": \"19' SCISSOR LIFT  - 1932\",\n            \"departmentNumber\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"17/04/2025 15:33:59\"\n        },\n        {\n            \"id\": 0,\n            \"invoiceNumber\": 90,\n            \"description\": \"TEST\",\n            \"stockCode\": \"BOARD001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 20,\n            \"unitPrice\": 1,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 1,\n            \"foreignNetAmount\": 1,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"22/04/2025 13:11:28\"\n        },\n        {\n            \"id\": 0,\n            \"invoiceNumber\": 91,\n            \"description\": \"Whiteboard - Drywipe (900 x 1200)\",\n            \"stockCode\": \"BOARD001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 20,\n            \"unitPrice\": 18,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 18,\n            \"foreignNetAmount\": 18,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 1,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"22/04/2025 13:12:24\"\n        },\n        {\n            \"id\": 0,\n            \"invoiceNumber\": 92,\n            \"description\": \"TEST\",\n            \"stockCode\": \"BOARD001\",\n            \"nominal\": \"4000\",\n            \"details\": \"\",\n            \"taxCode\": \"T1\",\n            \"taxRate\": 20,\n            \"unitPrice\": 1,\n            \"quantity\": 1,\n            \"discount\": 0,\n            \"netAmount\": 1,\n            \"foreignNetAmount\": 1,\n            \"comment1\": \"\",\n            \"comment2\": \"\",\n            \"departmentNumber\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"22/04/2025 13:13:23\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"0f8d5f2a-61eb-4839-9821-76de4bdee6fc"}],"id":"296d21a2-fe1a-4035-8621-49170ebcbe68","_postman_id":"296d21a2-fe1a-4035-8621-49170ebcbe68","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}},{"name":"Purchase Invoices / Credits","item":[{"name":"Create Purchase Invoice","id":"a70bfefc-350a-4fb1-9a07-97575842f87a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"NEWS\",\r\n    \"invRef\": \"INV1234\",\r\n    \"date\": \"03/07/2024\",\r\n    \"details\": \"TEST DETAILS\",\r\n    \"currency\": 1,\r\n    \"dispute\": 1,\r\n    \"items\": [\r\n        {\r\n            \"nominalCode\": \"5000\",\r\n            \"taxCode\": \"1\",\r\n            \"netAmount\": 100,\r\n            \"taxAmount\": 20,\r\n            \"details\": \"details123\",\r\n            \"departmentNumber\": \"\",\r\n            \"costCode\": \"\",\r\n            \"projectRef\": \"\",\r\n            \"isNegativeLine\": 0,\r\n            \"externalFileURL\": \"www.google.co.uk\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/purchaseInvoice","description":"<h2 id=\"post-purchase-invoice\">POST Purchase Invoice</h2>\n<ul>\n<li><p>Description: Creates a Purchase Invoice using the TransactionPost object.</p>\n</li>\n<li><p>Endpoint URL: <code>api/purchaseInvoice</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">accountRef // string (max 8 chars), required\ndate // string dd/mm/yyyy, required\ninvRef // string (max 30 chars), optional\ndetails // string (max 60 chars), optional\ncurrency // int, optional //see below notes\nuserName // String (max 30 chars), optional\ndueDate // string, optional, dd/mm/yyyy\nforeignRate // double, optional // see below notes\nitems\n    nominalCode // string (max 8 chars), required\n    taxCode // int (max 2 chars), required\n    netAmount // double (max 8 chars), required\n    taxAmount // double (max 8 chars), required\n    exRef // string (max 8 chars), optional \n    details // string (max 60 chars), optional\n    externalFileURL // string, web URL, required \n    departmentNumber // int (max 2 chars), optional \n    projectRef // string (max 12 chars), optional\n    projectId // int, optional\n    CostCodeId // int, optional\n    costCode //  string (max 8 chars), optional\n    isNegativeLine // int (max 1 chars), optional // 0 = negative &amp; 1 = positive \n    disputed // (max 1 chars), optional // 0 = no &amp; 1 = yes\n\n</code></pre>\n<p>NOTES:</p>\n<ul>\n<li><p>If currency is set on purchaseInvoice, it must match the id of the currency of the associated Supplier Account.</p>\n</li>\n<li><p>If currency is set and foreignRate is not set or is ‘null’ the transaction will be stored using the Exchange Rate stored in Sage for the selected currency.</p>\n</li>\n<li><p>If using isNegativeLine: If set true, this will create a credit line on the transactions for the negative lines matching the invoice on all other information (inv ref etc)</p>\n</li>\n<li><p>If set true, the parent model cannot have the isCredit field set to true</p>\n</li>\n<li><p>If set true, the total of ALL the invoice lines must be more than the total of all the credit lines</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","purchaseInvoice"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"48fdedb1-2123-413d-8c36-2b106ece0383","name":"Create Purchase Invoice","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"NEWS\",\r\n    \"invRef\": \"INV1234\",\r\n    \"date\": \"03/07/2024\",\r\n    \"details\": \"TEST DETAILS\",\r\n    \"currency\": 1,\r\n    \"dispute\": 1,\r\n    \"items\": [\r\n        {\r\n            \"nominalCode\": \"5000\",\r\n            \"taxCode\": \"1\",\r\n            \"netAmount\": 100,\r\n            \"taxAmount\": 20,\r\n            \"details\": \"details123\",\r\n            \"departmentNumber\": \"\",\r\n            \"costCode\": \"\",\r\n            \"projectRef\": \"\",\r\n            \"isNegativeLine\": 0,\r\n            \"externalFileURL\": \"www.google.co.uk\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/purchaseInvoice"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:16:13 GMT"},{"key":"Content-Length","value":"57"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 705,\n    \"message\": null\n}"}],"_postman_id":"a70bfefc-350a-4fb1-9a07-97575842f87a"},{"name":"Read Document Link","id":"1dc92b5d-b7a9-47df-a454-66bb4089e070","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/documentLink/{{transactionNumber}}","description":"<h2 id=\"read-document-link\">Read Document Link</h2>\n<ul>\n<li><p>Description: Reads Document Link from Purchase Order</p>\n</li>\n<li><p>Endpoint URL: <code>api/documentLink/{ID}</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: transactionNumber</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","documentLink","{{transactionNumber}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"73fbf09c-aca1-45c6-a5ab-c1f1b246a45a","name":"Read Document Link","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{url}}/api/documentLink/{{transactionNumber}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:19:50 GMT"},{"key":"Content-Length","value":"72"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": \"www.google.co.uk\",\n    \"message\": null\n}"}],"_postman_id":"1dc92b5d-b7a9-47df-a454-66bb4089e070"}],"id":"36b5be2e-25c0-452a-abd7-0cb38eddb2be","_postman_id":"36b5be2e-25c0-452a-abd7-0cb38eddb2be","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}},{"name":"Projects","item":[{"name":"Search Projects","id":"485bd7fb-7ff8-444d-b875-e1f3df140264","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"START_DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"01/01/2025\"\r\n    },\r\n    {\r\n        \"field\": \"START_DATE\",\r\n        \"type\": \"lt\",\r\n        \"value\": \"01/01/2026\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchProject","description":"<h2 id=\"search-projects\">Search Projects</h2>\n<ul>\n<li><p>Description: Searches the PROJECT table in Sage.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchProject</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchProject"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"6ccfbedd-9206-4eef-9ac2-3ca38be37739","name":"Search Projects","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"RECORD_MODIFY_DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"01/07/2023\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchProject"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:22:46 GMT"},{"key":"Content-Length","value":"933"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"reference\": \"PROJ006\",\n            \"name\": \"ABS Garages EPOS Computer\",\n            \"description\": \"Supply and fit new EPOS Computer (PC Combo 5)\",\n            \"statusID\": \"1\",\n            \"startDate\": \"17/05/2021 00:00:00\",\n            \"endDate\": \"18/05/2022 00:00:00\",\n            \"customerRef\": \"ABS001\",\n            \"orderNumber\": \"ABS9484\",\n            \"analysis1\": \"Susan\",\n            \"analysis2\": \"Office\",\n            \"analysis3\": \"No\",\n            \"address1\": \"\",\n            \"address2\": \"\",\n            \"address3\": \"\",\n            \"address4\": \"\",\n            \"address5\": \"\",\n            \"contactName\": \"\",\n            \"telephone\": \"\",\n            \"fax\": \"\",\n            \"email\": \"\",\n            \"countryCode\": \"GB\",\n            \"totalBilled\": 0,\n            \"billedNet\": 0,\n            \"billedTax\": 0,\n            \"outstandingToBill\": 1200,\n            \"priceQuoted\": 1200,\n            \"profitToDate\": -168,\n            \"totalCost\": 168,\n            \"totalBudget\": 1080,\n            \"variance\": 912,\n            \"lastBilledDate\": \"\",\n            \"lastCostDate\": \"15/05/2005 00:00:00\",\n            \"projectID\": \"6\",\n            \"parentProjectNo\": \"0\",\n            \"childPosition\": \"0\",\n            \"committedCost\": 0,\n            \"recordCreateDate\": \"27/04/2010 17:16:58\",\n            \"recordModifyDate\": \"26/01/2024 17:22:23\",\n            \"recordDeleted\": false\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"485bd7fb-7ff8-444d-b875-e1f3df140264"},{"name":"Create Project","id":"10611e3a-1a3a-424f-92af-0d111d342b6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Hyperext Test Project\",\r\n    \"reference\": \"HYPEAPI1\",\r\n    \"startDate\": \"01/07/2024\",\r\n    \"endDate\": \"01/12/2042\",\r\n    \"description\": \"Hyperext Test project description\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/project","description":"<h2 id=\"post-create-project\">POST Create Project</h2>\n<ul>\n<li><p>Description: Creates a new project</p>\n</li>\n<li><p>Endpoint URL: <code>api/project</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">projectID // String, required for patch, max 4 chars\naccountRef // String, optional, max 8 chars\nname // String, required, max 100 chars\nreference // String, required, max 12 chars\nstartDate // String, required, dd/MM/yyyy\nendDate // String, required, dd/MM/yyyy\ndescription // String, required, max 255 chars\npriceQuoted // Double, optional, max 8 chars\ntotalBudget // Double, optional, max 8 chars\norderNumber // String, optional, max 30 chars\nanalysis1 // string, optional, max 30 chars\naddress1 // optional, string, max 60 chars\naddress2 // optional, string, max 60 chars\naddress3 // optional, string, max 60 chars\naddress4 // optional, string, max 60 chars\naddress5 // optional, string, max 60 chars\nstatus // string, required, see available status list below\n\n</code></pre>\n<h3 id=\"project-status-values\">Project Status values</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value         Description\nACTIVE        Active\nCOMPLETED     Completed, closed\nINITIAL       Pre-acceptance\nSNAG          Completed, open\nSUSPEND       Suspended    \n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","project"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"554667b8-c41c-4a15-bc3d-21a3bb62df53","name":"Create Project","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Hyperext Test Project\",\r\n    \"reference\": \"HYPEAPI1\",\r\n    \"startDate\": \"01/07/2024\",\r\n    \"endDate\": \"01/12/2042\",\r\n    \"description\": \"Hyperext Test project description\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/project"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:25:46 GMT"},{"key":"Content-Length","value":"55"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 7,\n    \"message\": null\n}"}],"_postman_id":"10611e3a-1a3a-424f-92af-0d111d342b6a"},{"name":"Read Project","id":"c27b0619-9a72-4909-ae32-0574c9f825eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/project/{{id}}","description":"<h2 id=\"get-project\">Get Project</h2>\n<ul>\n<li><p>Description: Fetches a project details, search by project reference</p>\n</li>\n<li><p>Endpoint URL <code>api/project/{id}</code></p>\n</li>\n<li><p>method <code>GET</code></p>\n</li>\n<li><p>Parameters: id</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","project","{{id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"dc7d62f0-f072-451a-b480-3b0e0975a477","name":"Read Project","originalRequest":{"method":"GET","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/project/PROJ006"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:24:14 GMT"},{"key":"Content-Length","value":"686"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"billedNet\": 0,\n        \"billedVAT\": 0,\n        \"lastBilledDate\": \"30/12/1899\",\n        \"lastCostDate\": \"15/05/2005\",\n        \"outstandingToBill\": 1200,\n        \"profitToDate\": -168,\n        \"totalBilled\": 0,\n        \"totalCost\": 168,\n        \"variance\": 912,\n        \"status\": \"Active\",\n        \"accountRef\": \"ABS001\",\n        \"reference\": \"PROJ006\",\n        \"name\": \"ABS Garages EPOS Computer\",\n        \"description\": \"Supply and fit new EPOS Computer (PC Combo 5)\",\n        \"startDate\": \"17/05/2021\",\n        \"endDate\": \"18/05/2022\",\n        \"projectID\": 6,\n        \"priceQuoted\": 1200,\n        \"totalBudget\": 1080,\n        \"orderNumber\": \"ABS9484\",\n        \"analysis1\": \"Susan\",\n        \"analysis2\": \"Office\",\n        \"analysis3\": \"No\",\n        \"address1\": \"\",\n        \"address2\": \"\",\n        \"address3\": \"\",\n        \"address4\": \"\",\n        \"address5\": \"\",\n        \"contact\": \"\",\n        \"email\": \"\"\n    },\n    \"message\": null\n}"}],"_postman_id":"c27b0619-9a72-4909-ae32-0574c9f825eb"},{"name":"Update Project","id":"fca609bd-1a03-40e6-b196-f724cbebeefa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Hyperext Test Project\",\r\n    \"reference\": \"HYPEAPI1\",\r\n    \"startDate\": \"01/07/2024\",\r\n    \"endDate\": \"01/12/2042\",\r\n    \"description\": \"New description\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/project","description":"<h2 id=\"patch-update-project\">PATCH Update Project</h2>\n<ul>\n<li><p>Description: Updatesa new project</p>\n</li>\n<li><p>Endpoint URL: <code>api/project</code></p>\n</li>\n<li><p>Method: <code>PATCH</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">projectID // String, required for patch, max 4 chars\naccountRef // String, optional, max 8 chars\nname // String, required, max 100 chars\nreference // String, required, max 12 chars\nstartDate // String, required, dd/MM/yyyy\nendDate // String, required, dd/MM/yyyy\ndescription // String, required, max 255 chars\npriceQuoted // Double, optional, max 8 chars\ntotalBudget // Double, optional, max 8 chars\norderNumber // String, optional, max 30 chars\nanalysis1 // string, optional, max 30 chars\naddress1 // optional, string, max 60 chars\naddress2 // optional, string, max 60 chars\naddress3 // optional, string, max 60 chars\naddress4 // optional, string, max 60 chars\naddress5 // optional, string, max 60 chars\nstatus // string, required, see available status list below\n\n</code></pre>\n<h3 id=\"project-status-values\">Project Status values</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Value         Description\nACTIVE        Active\nCOMPLETED     Completed, closed\nINITIAL       Pre-acceptance\nSNAG          Completed, open\nSUSPEND       Suspended    \n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","project"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"7cd78399-7c11-4fb2-bce1-ba2e95ea9f99","name":"Update Project","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Hyperext Test Project\",\r\n    \"reference\": \"HYPEAPI1\",\r\n    \"startDate\": \"01/07/2024\",\r\n    \"endDate\": \"01/12/2042\",\r\n    \"description\": \"New description\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/project"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:29:06 GMT"},{"key":"Content-Length","value":"55"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 7,\n    \"message\": null\n}"}],"_postman_id":"fca609bd-1a03-40e6-b196-f724cbebeefa"},{"name":"Read Project Transactions","id":"181a6297-8131-4f13-9ffb-05dfcaf3cd18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/project/{{projectReference}}/transactions","description":"<h2 id=\"get-project-transactions\">GET Project Transactions</h2>\n<ul>\n<li><p>Description: Returns a list of project transactions</p>\n</li>\n<li><p>Endpoint URL: <code>api/project/{projectReference}/transactions</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: projectReference</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","project","{{projectReference}}","transactions"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"70df6910-d263-43f7-9c86-d2bd491e1573","name":"Read Project Transactions","originalRequest":{"method":"GET","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/project/PROJ001/transactions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:30:27 GMT"},{"key":"Content-Length","value":"2902"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"amount\": 50,\n            \"auditTrailID\": 0,\n            \"costCodeRef\": \"PROJ\",\n            \"accountRef\": null,\n            \"date\": \"28/04/2005\",\n            \"details\": \"Project Management Time\",\n            \"extReference\": \"\",\n            \"reference\": \"Time\",\n            \"quantity\": 2.5,\n            \"rate\": 20,\n            \"taxAmount\": 0,\n            \"transactionID\": 1,\n            \"type\": 20\n        },\n        {\n            \"amount\": 7.5,\n            \"auditTrailID\": 0,\n            \"costCodeRef\": \"TRAV\",\n            \"accountRef\": null,\n            \"date\": \"29/04/2005\",\n            \"details\": \"Travel Time\",\n            \"extReference\": \"\",\n            \"reference\": \"Time\",\n            \"quantity\": 0.5,\n            \"rate\": 15,\n            \"taxAmount\": 0,\n            \"transactionID\": 2,\n            \"type\": 20\n        },\n        {\n            \"amount\": 7.5,\n            \"auditTrailID\": 0,\n            \"costCodeRef\": \"INST\",\n            \"accountRef\": null,\n            \"date\": \"29/04/2005\",\n            \"details\": \"Installation Time\",\n            \"extReference\": \"\",\n            \"reference\": \"Time\",\n            \"quantity\": 0.5,\n            \"rate\": 15,\n            \"taxAmount\": 0,\n            \"transactionID\": 3,\n            \"type\": 20\n        },\n        {\n            \"amount\": 75,\n            \"auditTrailID\": 0,\n            \"costCodeRef\": \"COMP\",\n            \"accountRef\": null,\n            \"date\": \"29/04/2005\",\n            \"details\": \"Computer Install\",\n            \"extReference\": \"\",\n            \"reference\": \"Time\",\n            \"quantity\": 5,\n            \"rate\": 15,\n            \"taxAmount\": 0,\n            \"transactionID\": 4,\n            \"type\": 20\n        },\n        {\n            \"amount\": 15,\n            \"auditTrailID\": 0,\n            \"costCodeRef\": \"NETW\",\n            \"accountRef\": null,\n            \"date\": \"29/04/2005\",\n            \"details\": \"Network Install\",\n            \"extReference\": \"\",\n            \"reference\": \"Time\",\n            \"quantity\": 1,\n            \"rate\": 15,\n            \"taxAmount\": 0,\n            \"transactionID\": 5,\n            \"type\": 20\n        },\n        {\n            \"amount\": 17,\n            \"auditTrailID\": 0,\n            \"costCodeRef\": \"WRKSH\",\n            \"accountRef\": null,\n            \"date\": \"28/04/2005\",\n            \"details\": \"Workshop Test\",\n            \"extReference\": \"\",\n            \"reference\": \"Time\",\n            \"quantity\": 1,\n            \"rate\": 17,\n            \"taxAmount\": 0,\n            \"transactionID\": 6,\n            \"type\": 20\n        },\n        {\n            \"amount\": 2511,\n            \"auditTrailID\": 0,\n            \"costCodeRef\": \"DESK\",\n            \"accountRef\": null,\n            \"date\": \"29/04/2005\",\n            \"details\": \"PC Combo Pack 4\",\n            \"extReference\": \"\",\n            \"reference\": \"Stock\",\n            \"quantity\": 4,\n            \"rate\": 0,\n            \"taxAmount\": 0,\n            \"transactionID\": 7,\n            \"type\": 22\n        },\n        {\n            \"amount\": 24.35,\n            \"auditTrailID\": 1169,\n            \"costCodeRef\": \"NETQP\",\n            \"accountRef\": null,\n            \"date\": \"27/04/2005\",\n            \"details\": \"Router & Cabling\",\n            \"extReference\": \"2324\",\n            \"reference\": \"Pur\",\n            \"quantity\": 0,\n            \"rate\": 0,\n            \"taxAmount\": 0,\n            \"transactionID\": 8,\n            \"type\": 6\n        },\n        {\n            \"amount\": 8,\n            \"auditTrailID\": 1170,\n            \"costCodeRef\": \"TRAVEL\",\n            \"accountRef\": null,\n            \"date\": \"29/04/2005\",\n            \"details\": \"Petrol\",\n            \"extReference\": \"\",\n            \"reference\": \"EXP\",\n            \"quantity\": 0,\n            \"rate\": 0,\n            \"taxAmount\": 0,\n            \"transactionID\": 9,\n            \"type\": 11\n        },\n        {\n            \"amount\": 4000,\n            \"auditTrailID\": 1179,\n            \"costCodeRef\": \"\",\n            \"accountRef\": \"SDE001\",\n            \"date\": \"01/05/2005\",\n            \"details\": \"Install 4 PCs as requested (PC Combo Pack5)\",\n            \"extReference\": \"\",\n            \"reference\": \"70\",\n            \"quantity\": 0,\n            \"rate\": 0,\n            \"taxAmount\": 0,\n            \"transactionID\": 53,\n            \"type\": 1\n        },\n        {\n            \"amount\": 4000,\n            \"auditTrailID\": 1233,\n            \"costCodeRef\": \"\",\n            \"accountRef\": \"SDE001\",\n            \"date\": \"11/07/2008\",\n            \"details\": \"Install 4 PCs as requested (PC Combo Pack5)\",\n            \"extReference\": \"\",\n            \"reference\": \"77\",\n            \"quantity\": 0,\n            \"rate\": 0,\n            \"taxAmount\": 0,\n            \"transactionID\": 57,\n            \"type\": 1\n        },\n        {\n            \"amount\": 4000,\n            \"auditTrailID\": 1234,\n            \"costCodeRef\": \"\",\n            \"accountRef\": \"SDE001\",\n            \"date\": \"11/08/2008\",\n            \"details\": \"Install 4 PCs as requested (PC Combo Pack5)\",\n            \"extReference\": \"\",\n            \"reference\": \"78\",\n            \"quantity\": 0,\n            \"rate\": 0,\n            \"taxAmount\": 0,\n            \"transactionID\": 58,\n            \"type\": 1\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"181a6297-8131-4f13-9ffb-05dfcaf3cd18"},{"name":"Search Project Only Transactions","id":"b4930e11-296e-47bf-879e-55a05366f729","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"PROJECT.REFERENCE\",\r\n        \"type\": \"eq\",\r\n        \"value\": \"PROJ001\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchProjectTransaction","description":"<h2 id=\"search-projects\">Search Projects</h2>\n<ul>\n<li><p>Description: Searches the PROJECT table in Sage.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchProject</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchProjectTransaction"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"4f895f44-076d-4e75-9628-e058ed961b68","name":"Search Project Only Transactions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"PROJECT.REFERENCE\",\r\n        \"type\": \"eq\",\r\n        \"value\": \"PROJ001\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchProjectTransaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Fri, 30 Aug 2024 13:37:06 GMT"},{"key":"Content-Length","value":"448"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"projectTranID\": 18,\n            \"projectReference\": \"PROJ001\",\n            \"type\": \"CD\",\n            \"accountRef\": \"\",\n            \"nominalCode\": \"\",\n            \"reference\": \"Time\",\n            \"extraRef\": \"\",\n            \"details\": \"Project Management Time\",\n            \"resourceID\": 1,\n            \"quantity\": -1,\n            \"rate\": 20,\n            \"taxAmount\": 0,\n            \"taxCode\": \"T0\",\n            \"deptNumber\": 0,\n            \"deptName\": \"Default\",\n            \"recordCreateDate\": \"27/04/2010 17:16:58\",\n            \"recordModifyDate\": \"21/08/2018 18:18:50\",\n            \"recordDeleted\": false\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"b4930e11-296e-47bf-879e-55a05366f729"},{"name":"Search Project Transactions","id":"bdf543d9-7fc6-4d66-a121-95ea0d5c5612","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"PROJECT.REFERENCE\",\r\n        \"type\": \"eq\",\r\n        \"value\": \"PROJ001\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchProjectTran","description":"<h2 id=\"search-projects\">Search Projects</h2>\n<ul>\n<li><p>Description: Searches the PROJECT table in Sage.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchProject</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchProjectTran"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"10d1504f-ab7b-4563-b142-58dbc0d863af","name":"Search Project Transactions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"PROJECT.REFERENCE\",\r\n        \"type\": \"eq\",\r\n        \"value\": \"PROJ001\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchProjectTran"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 05 Feb 2025 15:23:08 GMT"},{"key":"Content-Length","value":"3674"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"projectTranID\": 1,\n            \"auditTrailID\": 0,\n            \"stockTrailID\": 0,\n            \"projectID\": 1,\n            \"projectReference\": \"PROJ001\",\n            \"costCodeID\": 7,\n            \"reveueCodeID\": 0,\n            \"popItemID\": 0,\n            \"stockAllocationID\": 0,\n            \"date\": \"28/04/2005 00:00:00\",\n            \"recordCreateDate\": \"25/11/2022 09:25:54\",\n            \"recordModifyDate\": \"25/11/2022 09:25:54\",\n            \"recordDeleted\": false\n        },\n        {\n            \"projectTranID\": 2,\n            \"auditTrailID\": 0,\n            \"stockTrailID\": 0,\n            \"projectID\": 1,\n            \"projectReference\": \"PROJ001\",\n            \"costCodeID\": 17,\n            \"reveueCodeID\": 0,\n            \"popItemID\": 0,\n            \"stockAllocationID\": 0,\n            \"date\": \"28/04/2005 00:00:00\",\n            \"recordCreateDate\": \"25/11/2022 09:25:54\",\n            \"recordModifyDate\": \"25/11/2022 09:25:54\",\n            \"recordDeleted\": false\n        },\n        {\n            \"projectTranID\": 4,\n            \"auditTrailID\": 0,\n            \"stockTrailID\": 0,\n            \"projectID\": 1,\n            \"projectReference\": \"PROJ001\",\n            \"costCodeID\": 6,\n            \"reveueCodeID\": 0,\n            \"popItemID\": 0,\n            \"stockAllocationID\": 0,\n            \"date\": \"29/04/2005 00:00:00\",\n            \"recordCreateDate\": \"25/11/2022 09:25:54\",\n            \"recordModifyDate\": \"25/11/2022 09:25:54\",\n            \"recordDeleted\": false\n        },\n        {\n            \"projectTranID\": 5,\n            \"auditTrailID\": 0,\n            \"stockTrailID\": 0,\n            \"projectID\": 1,\n            \"projectReference\": \"PROJ001\",\n            \"costCodeID\": 5,\n            \"reveueCodeID\": 0,\n            \"popItemID\": 0,\n            \"stockAllocationID\": 0,\n            \"date\": \"29/04/2005 00:00:00\",\n            \"recordCreateDate\": \"25/11/2022 09:25:54\",\n            \"recordModifyDate\": \"25/11/2022 09:25:54\",\n            \"recordDeleted\": false\n        },\n        {\n            \"projectTranID\": 6,\n            \"auditTrailID\": 0,\n            \"stockTrailID\": 0,\n            \"projectID\": 1,\n            \"projectReference\": \"PROJ001\",\n            \"costCodeID\": 10,\n            \"reveueCodeID\": 0,\n            \"popItemID\": 0,\n            \"stockAllocationID\": 0,\n            \"date\": \"29/04/2005 00:00:00\",\n            \"recordCreateDate\": \"25/11/2022 09:25:54\",\n            \"recordModifyDate\": \"25/11/2022 09:25:54\",\n            \"recordDeleted\": false\n        },\n        {\n            \"projectTranID\": 7,\n            \"auditTrailID\": 0,\n            \"stockTrailID\": 0,\n            \"projectID\": 1,\n            \"projectReference\": \"PROJ001\",\n            \"costCodeID\": 11,\n            \"reveueCodeID\": 0,\n            \"popItemID\": 0,\n            \"stockAllocationID\": 0,\n            \"date\": \"29/04/2005 00:00:00\",\n            \"recordCreateDate\": \"25/11/2022 09:25:54\",\n            \"recordModifyDate\": \"25/11/2022 09:25:54\",\n            \"recordDeleted\": false\n        },\n        {\n            \"projectTranID\": 42,\n            \"auditTrailID\": 1169,\n            \"stockTrailID\": 0,\n            \"projectID\": 1,\n            \"projectReference\": \"PROJ001\",\n            \"costCodeID\": 13,\n            \"reveueCodeID\": 0,\n            \"popItemID\": 0,\n            \"stockAllocationID\": 0,\n            \"date\": \"27/04/2022 00:00:00\",\n            \"recordCreateDate\": \"25/11/2022 09:25:55\",\n            \"recordModifyDate\": \"25/11/2022 09:25:55\",\n            \"recordDeleted\": false\n        },\n        {\n            \"projectTranID\": 44,\n            \"auditTrailID\": 1170,\n            \"stockTrailID\": 0,\n            \"projectID\": 1,\n            \"projectReference\": \"PROJ001\",\n            \"costCodeID\": 14,\n            \"reveueCodeID\": 0,\n            \"popItemID\": 0,\n            \"stockAllocationID\": 0,\n            \"date\": \"29/04/2022 00:00:00\",\n            \"recordCreateDate\": \"25/11/2022 09:25:55\",\n            \"recordModifyDate\": \"25/11/2022 09:25:55\",\n            \"recordDeleted\": false\n        },\n        {\n            \"projectTranID\": 45,\n            \"auditTrailID\": 0,\n            \"stockTrailID\": 889,\n            \"projectID\": 1,\n            \"projectReference\": \"PROJ001\",\n            \"costCodeID\": 8,\n            \"reveueCodeID\": 0,\n            \"popItemID\": 0,\n            \"stockAllocationID\": 0,\n            \"date\": \"29/04/2022 00:00:00\",\n            \"recordCreateDate\": \"25/11/2022 09:25:55\",\n            \"recordModifyDate\": \"25/11/2022 09:25:55\",\n            \"recordDeleted\": false\n        },\n        {\n            \"projectTranID\": 48,\n            \"auditTrailID\": 1179,\n            \"stockTrailID\": 0,\n            \"projectID\": 1,\n            \"projectReference\": \"PROJ001\",\n            \"costCodeID\": 0,\n            \"reveueCodeID\": 1,\n            \"popItemID\": 0,\n            \"stockAllocationID\": 0,\n            \"date\": \"01/05/2022 00:00:00\",\n            \"recordCreateDate\": \"25/11/2022 09:25:55\",\n            \"recordModifyDate\": \"25/11/2022 09:25:55\",\n            \"recordDeleted\": false\n        },\n        {\n            \"projectTranID\": 57,\n            \"auditTrailID\": 1233,\n            \"stockTrailID\": 0,\n            \"projectID\": 1,\n            \"projectReference\": \"PROJ001\",\n            \"costCodeID\": 0,\n            \"reveueCodeID\": 1,\n            \"popItemID\": 0,\n            \"stockAllocationID\": 0,\n            \"date\": \"11/07/2022 00:00:00\",\n            \"recordCreateDate\": \"25/11/2022 09:25:55\",\n            \"recordModifyDate\": \"25/11/2022 09:25:55\",\n            \"recordDeleted\": false\n        },\n        {\n            \"projectTranID\": 58,\n            \"auditTrailID\": 1234,\n            \"stockTrailID\": 0,\n            \"projectID\": 1,\n            \"projectReference\": \"PROJ001\",\n            \"costCodeID\": 0,\n            \"reveueCodeID\": 1,\n            \"popItemID\": 0,\n            \"stockAllocationID\": 0,\n            \"date\": \"11/08/2022 00:00:00\",\n            \"recordCreateDate\": \"25/11/2022 09:25:55\",\n            \"recordModifyDate\": \"25/11/2022 09:25:55\",\n            \"recordDeleted\": false\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"bdf543d9-7fc6-4d66-a121-95ea0d5c5612"},{"name":"Create Project Transactions","id":"96c91a8d-84be-40c3-b4ab-137bf7a6533b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"costCodeRef\": \"LAB1\",\r\n    \"date\": \"03/07/2024\",\r\n    \"details\": \"Fourth Charge\",\r\n    \"reference\": \"ABC90210\",\r\n    \"quantity\": 4.0,\r\n    \"rate\": 30.0,\r\n    \"taxAmount\": 24.0,\r\n    \"type\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/project/{{projectReference}}/transactions","description":"<h2 id=\"post-project-transactions\">POST Project transactions</h2>\n<ul>\n<li><p>Description: Posts a project only transaction</p>\n</li>\n<li><p>Endpoint URL: <code>api/project/{projectReference}/transactions</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">codeCodeRef // String, required, max 8 chars\ndate // string, required, dd/mm/yyyy\ndetails // string, optional, max 60 chars\nreference // string, optional, max 8 chars\nquantity // double, required, max 8 chars\nrate // double, required, max 8 chars\ntaxAmount // double,optional, max 8 chars\ntype // transaction type (see enums/types below, should be project specific such as sdoCC - Project Cost Credit)\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","project","{{projectReference}}","transactions"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3c86cd03-0866-4bd6-8bc2-9b888f3beac8","name":"Create Project Transactions","originalRequest":{"method":"POST","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"costCodeRef\": \"LAB1\",\r\n    \"date\": \"03/07/2024\",\r\n    \"details\": \"Fourth Charge\",\r\n    \"reference\": \"ABC90210\",\r\n    \"quantity\": 4.0,\r\n    \"rate\": 30.0,\r\n    \"taxAmount\": 24.0,\r\n    \"type\": 20\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/project/HYPEAPI1/transactions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:31:58 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 59,\n    \"message\": null\n}"}],"_postman_id":"96c91a8d-84be-40c3-b4ab-137bf7a6533b"},{"name":"Read Project Cost Codes","id":"aa5e7c84-fb7d-4c69-826a-292aabaa41d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/projectCostCode","description":"<h2 id=\"get-project-cost-codes\">GET Project Cost Codes</h2>\n<ul>\n<li><p>Description: Returns a list of all project cost codes</p>\n</li>\n<li><p>Endpoint URL: <code>api/projectCostCodes</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","projectCostCode"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"603fb473-33f8-4bce-a4f9-a95fe55e890f","name":"Read Project Cost Codes","originalRequest":{"method":"GET","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/projectCostCode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:34:34 GMT"},{"key":"Content-Length","value":"1252"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"costCodeID\": 15,\n            \"description\": \"Accommodation Costs\",\n            \"reference\": \"ACOM\",\n            \"costTypeId\": 3\n        },\n        {\n            \"costCodeID\": 12,\n            \"description\": \"Broadband Installation\",\n            \"reference\": \"BRDB\",\n            \"costTypeId\": 1\n        },\n        {\n            \"costCodeID\": 10,\n            \"description\": \"Computer Installation\",\n            \"reference\": \"COMP\",\n            \"costTypeId\": 1\n        },\n        {\n            \"costCodeID\": 8,\n            \"description\": \"Desktop\",\n            \"reference\": \"DESK\",\n            \"costTypeId\": 2\n        },\n        {\n            \"costCodeID\": 5,\n            \"description\": \"Installation Time (General)\",\n            \"reference\": \"INST\",\n            \"costTypeId\": 1\n        },\n        {\n            \"costCodeID\": 9,\n            \"description\": \"Laptop\",\n            \"reference\": \"LAPT\",\n            \"costTypeId\": 2\n        },\n        {\n            \"costCodeID\": 16,\n            \"description\": \"Miscellaneous Costs\",\n            \"reference\": \"MISC\",\n            \"costTypeId\": 3\n        },\n        {\n            \"costCodeID\": 13,\n            \"description\": \"Network Equip\",\n            \"reference\": \"NETQP\",\n            \"costTypeId\": 2\n        },\n        {\n            \"costCodeID\": 11,\n            \"description\": \"Network Installation\",\n            \"reference\": \"NETW\",\n            \"costTypeId\": 1\n        },\n        {\n            \"costCodeID\": 18,\n            \"description\": \"New Cost Code\",\n            \"reference\": \"NEWCC\",\n            \"costTypeId\": 5\n        },\n        {\n            \"costCodeID\": 7,\n            \"description\": \"Project Management\",\n            \"reference\": \"PROJ\",\n            \"costTypeId\": 1\n        },\n        {\n            \"costCodeID\": 6,\n            \"description\": \"Travel Time\",\n            \"reference\": \"TRAV\",\n            \"costTypeId\": 1\n        },\n        {\n            \"costCodeID\": 14,\n            \"description\": \"Travel Costs\",\n            \"reference\": \"TRAVEL\",\n            \"costTypeId\": 3\n        },\n        {\n            \"costCodeID\": 17,\n            \"description\": \"Workshop\",\n            \"reference\": \"WRKSH\",\n            \"costTypeId\": 1\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"aa5e7c84-fb7d-4c69-826a-292aabaa41d3"},{"name":"Create Project Cost Codes","id":"a5e4568e-2d61-4c06-948e-deb4db65ee9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"description\": \"New Cost Code\",\r\n    \"reference\": \"NEWCC\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/projectCostCode","description":"<h2 id=\"create-project-cost-codes\">Create Project Cost Codes</h2>\n<ul>\n<li><p>Description: Creates project cost codes.</p>\n</li>\n<li><p>Endpoint URL: <code>api/projectCostCode</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">description // String, required, max 60 chars\nreference // String, required, max 8 chars\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","projectCostCode"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c5381936-6b6f-4f34-b613-fc7f3cd81023","name":"Create Project Cost Codes","originalRequest":{"method":"POST","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"description\": \"New Cost Code\",\r\n    \"reference\": \"NEWCC\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/projectCostCode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:34:13 GMT"},{"key":"Content-Length","value":"56"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 18,\n    \"message\": null\n}"}],"_postman_id":"a5e4568e-2d61-4c06-948e-deb4db65ee9c"},{"name":"Read Project Budgets","id":"8c4fd5e1-e290-48a7-9399-dca4e7a295fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/projectBudgets","description":"<h2 id=\"read-project-budgets\">Read Project Budgets</h2>\n<ul>\n<li><p>Description: Reads Project Budgets</p>\n</li>\n<li><p>Endpoint URL: <code>api/projectBudgets</code></p>\n</li>\n<li><p>Method: <code>GET</code></p>\n</li>\n<li><p>Parameters: none</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","projectBudgets"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"2849add9-cc86-46fa-b279-b6e0e6209fbc","name":"Read Project Budgets","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/projectBudgets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:33:07 GMT"},{"key":"Content-Length","value":"1772"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"projectId\": 1,\n            \"costCodeId\": 5,\n            \"amount\": 20\n        },\n        {\n            \"projectId\": 1,\n            \"costCodeId\": 6,\n            \"amount\": 10\n        },\n        {\n            \"projectId\": 1,\n            \"costCodeId\": 7,\n            \"amount\": 40\n        },\n        {\n            \"projectId\": 1,\n            \"costCodeId\": 8,\n            \"amount\": 3468\n        },\n        {\n            \"projectId\": 1,\n            \"costCodeId\": 10,\n            \"amount\": 100\n        },\n        {\n            \"projectId\": 1,\n            \"costCodeId\": 11,\n            \"amount\": 20\n        },\n        {\n            \"projectId\": 1,\n            \"costCodeId\": 13,\n            \"amount\": 10\n        },\n        {\n            \"projectId\": 1,\n            \"costCodeId\": 14,\n            \"amount\": 10\n        },\n        {\n            \"projectId\": 1,\n            \"costCodeId\": 17,\n            \"amount\": 40\n        },\n        {\n            \"projectId\": 2,\n            \"costCodeId\": 6,\n            \"amount\": 10\n        },\n        {\n            \"projectId\": 2,\n            \"costCodeId\": 7,\n            \"amount\": 10\n        },\n        {\n            \"projectId\": 2,\n            \"costCodeId\": 9,\n            \"amount\": 627.75\n        },\n        {\n            \"projectId\": 2,\n            \"costCodeId\": 10,\n            \"amount\": 20\n        },\n        {\n            \"projectId\": 2,\n            \"costCodeId\": 13,\n            \"amount\": 35\n        },\n        {\n            \"projectId\": 2,\n            \"costCodeId\": 14,\n            \"amount\": 10\n        },\n        {\n            \"projectId\": 3,\n            \"costCodeId\": 5,\n            \"amount\": 100\n        },\n        {\n            \"projectId\": 3,\n            \"costCodeId\": 6,\n            \"amount\": 100\n        },\n        {\n            \"projectId\": 3,\n            \"costCodeId\": 7,\n            \"amount\": 80\n        },\n        {\n            \"projectId\": 3,\n            \"costCodeId\": 11,\n            \"amount\": 2000\n        },\n        {\n            \"projectId\": 3,\n            \"costCodeId\": 13,\n            \"amount\": 1000\n        },\n        {\n            \"projectId\": 3,\n            \"costCodeId\": 15,\n            \"amount\": 200\n        },\n        {\n            \"projectId\": 3,\n            \"costCodeId\": 17,\n            \"amount\": 300\n        },\n        {\n            \"projectId\": 4,\n            \"costCodeId\": 6,\n            \"amount\": 60\n        },\n        {\n            \"projectId\": 4,\n            \"costCodeId\": 7,\n            \"amount\": 100\n        },\n        {\n            \"projectId\": 4,\n            \"costCodeId\": 14,\n            \"amount\": 40\n        },\n        {\n            \"projectId\": 4,\n            \"costCodeId\": 17,\n            \"amount\": 1000\n        },\n        {\n            \"projectId\": 5,\n            \"costCodeId\": 6,\n            \"amount\": 10\n        },\n        {\n            \"projectId\": 5,\n            \"costCodeId\": 8,\n            \"amount\": 0\n        },\n        {\n            \"projectId\": 5,\n            \"costCodeId\": 10,\n            \"amount\": 0\n        },\n        {\n            \"projectId\": 5,\n            \"costCodeId\": 11,\n            \"amount\": 40\n        },\n        {\n            \"projectId\": 5,\n            \"costCodeId\": 13,\n            \"amount\": 30\n        },\n        {\n            \"projectId\": 5,\n            \"costCodeId\": 14,\n            \"amount\": 10\n        },\n        {\n            \"projectId\": 6,\n            \"costCodeId\": 6,\n            \"amount\": 20\n        },\n        {\n            \"projectId\": 6,\n            \"costCodeId\": 8,\n            \"amount\": 900\n        },\n        {\n            \"projectId\": 6,\n            \"costCodeId\": 10,\n            \"amount\": 100\n        },\n        {\n            \"projectId\": 6,\n            \"costCodeId\": 14,\n            \"amount\": 40\n        },\n        {\n            \"projectId\": 6,\n            \"costCodeId\": 17,\n            \"amount\": 20\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"8c4fd5e1-e290-48a7-9399-dca4e7a295fd"}],"id":"8d3bbadd-aba2-414a-861f-9c9e18b46e18","_postman_id":"8d3bbadd-aba2-414a-861f-9c9e18b46e18","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}},{"name":"Payments","item":[{"name":"Allocate Payment On Account","id":"963835fd-92a9-4ca2-ac50-39b6df829024","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"NEWS\",\r\n    \"paymentTransactionNumber\": 1265,\r\n    \"amount\": \"10\",\r\n    \"invRef\": \"INV1234\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/allocatePaymentOnAccount","description":"<h2 id=\"post-allocate-payment-on-account\">Post Allocate Payment On Account</h2>\n<ul>\n<li><p>Description: Allocate payment on an account</p>\n</li>\n<li><p>Endpoint URL: <code>api/allocatePaymentOnAccount</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">accountRef // String, required, max 8 chars\ninvRef // String, required, max 30 chars\npaymentTransactionNumber // int, required\namount // double, required, max 8 chars\ncurrency // Int, see notes, max 2 chars\n\n</code></pre>\n<p>NOTES -</p>\n<ul>\n<li><p>During the allocation process, if the API is unable to find a matching transaction for the given invRef (accountRefs must match too) then the API will post an unallocated payment.</p>\n</li>\n<li><p>Currency is required if sending a non BASE (foreign) currency.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","allocatePaymentOnAccount"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"290060f8-0b53-43a6-b4cc-fd33209af3ad","name":"Allocate Payment On Account","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"NEWS\",\r\n    \"paymentTransactionNumber\": 1265,\r\n    \"amount\": \"10\",\r\n    \"invRef\": \"INV1234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/allocatePaymentOnAccount"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:42:55 GMT"},{"key":"Content-Length","value":"115"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": true,\n    \"message\": \"Allocated payment of 10 GBP to invoice with invRef: INV1234\"\n}"}],"_postman_id":"963835fd-92a9-4ca2-ac50-39b6df829024"},{"name":"Allocate Credit On Account","id":"5c98d641-465d-44dc-b54f-9cb3ec5db68c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"A1D001\",\r\n    \"creditTransactionNumber\": 1236,\r\n    \"amount\": \"120\",\r\n    \"invRef\": \"150426-1\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/allocateCreditOnAccount","description":"<h2 id=\"post-allocate-credit-on-account\">Post Allocate Credit On Account</h2>\n<ul>\n<li><p>Description: Allocate credit on an account</p>\n</li>\n<li><p>Endpoint URL: <code>api/allocateCreditOnAccount</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">accountRef // String, required, max 8 chars\ninvRef // String, required, max 30 chars\ncreditTransactionNumber // int, required\namount // double, required, max 8 chars\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","allocateCreditOnAccount"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"36fb76b1-0204-4555-b8c6-baeb41b9f7f5","name":"Allocate Credit On Account","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"accountRef\": \"A1D001\",\r\n    \"creditTransactionNumber\": 1236,\r\n    \"amount\": \"120\",\r\n    \"invRef\": \"150426-1\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/allocateCreditOnAccount"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"cache-control","value":"no-cache"},{"key":"pragma","value":"no-cache"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"expires","value":"-1"},{"key":"server","value":"Microsoft-IIS/10.0"},{"key":"x-aspnet-version","value":"4.0.30319"},{"key":"x-powered-by","value":"ASP.NET"},{"key":"date","value":"Wed, 15 Apr 2026 08:20:19 GMT"},{"key":"content-length","value":"112"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": true,\n    \"message\": \"Allocated credit of 120 to invoice with invRef: 150426-1\"\n}"}],"_postman_id":"5c98d641-465d-44dc-b54f-9cb3ec5db68c"}],"id":"45039adf-7fc5-4a6d-97e4-9aecb560affb","_postman_id":"45039adf-7fc5-4a6d-97e4-9aecb560affb","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}},{"name":"Transactions","item":[{"name":"Search Audit Headers","id":"259fce9a-dbd8-4589-8b07-c4e9eeb58806","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"01/01/2025\"\r\n    },\r\n    {\r\n        \"field\": \"DATE\",\r\n        \"type\": \"lt\",\r\n        \"value\": \"01/01/2026\"\r\n    },\r\n    {\r\n        \"field\": \"TYPE\",\r\n        \"type\": \"like\",\r\n        \"value\": \"S%\"\r\n    }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/search/auditHeaders","description":"<h2 id=\"search-audit-headers\">Search Audit Headers</h2>\n<ul>\n<li><p>Description: Searches the AUDIT_HEADER table in Sage.</p>\n</li>\n<li><p>Endpoint URL: <code>api/search/auditHeaders</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","search","auditHeaders"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"06c98da4-2643-422e-a4cc-6e4641d83ef7","name":"Search Audit Headers","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"01/03/2024\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/search/auditHeaders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:53:56 GMT"},{"key":"Content-Length","value":"23453"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"accountRef\": \"SDE001\",\n            \"amountPaid\": 317.5,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SI\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Line 1\",\n            \"invRef\": \"85\",\n            \"netAmount\": 275,\n            \"taxAmount\": 42.5,\n            \"grossAmount\": 317.5,\n            \"foreignNetAmount\": 275,\n            \"foreignTaxAmount\": 42.5,\n            \"foreignGrossAmount\": 317.5,\n            \"tranNumber\": 1235,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": -317.5,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"01/08/2024 00:00:00\",\n            \"foreignAmountPaid\": 317.5,\n            \"foreignBankAmount\": -317.5,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 681,\n            \"invRefNumeric\": 85,\n            \"itemCount\": 3,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 15:58:02\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\",\n            \"salesPurchaseRef\": \"SDE001\"\n        },\n        {\n            \"accountRef\": \"YOU001\",\n            \"amountPaid\": 529.19999999999993,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SI\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Whiteboard - Drywipe (1000 x 1500)\",\n            \"invRef\": \"86\",\n            \"netAmount\": 441,\n            \"taxAmount\": 88.2,\n            \"grossAmount\": 529.2,\n            \"foreignNetAmount\": 441,\n            \"foreignTaxAmount\": 88.199999999999989,\n            \"foreignGrossAmount\": 529.2,\n            \"tranNumber\": 1238,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": -529.2,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"01/08/2024 00:00:00\",\n            \"foreignAmountPaid\": 529.19999999999993,\n            \"foreignBankAmount\": -529.2,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 682,\n            \"invRefNumeric\": 86,\n            \"itemCount\": 2,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:01:47\",\n            \"recordModifyDate\": \"02/07/2024 16:23:34\",\n            \"salesPurchaseRef\": \"YOU001\"\n        },\n        {\n            \"accountRef\": \"SDE001\",\n            \"amountPaid\": 120,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SI\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"\",\n            \"invRef\": \"87\",\n            \"netAmount\": 100,\n            \"taxAmount\": 20,\n            \"grossAmount\": 120,\n            \"foreignNetAmount\": 100,\n            \"foreignTaxAmount\": 20,\n            \"foreignGrossAmount\": 120,\n            \"tranNumber\": 1240,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": -120,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"01/08/2024 00:00:00\",\n            \"foreignAmountPaid\": 120,\n            \"foreignBankAmount\": -120,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 683,\n            \"invRefNumeric\": 87,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:09:25\",\n            \"recordModifyDate\": \"02/07/2024 16:10:13\",\n            \"salesPurchaseRef\": \"SDE001\"\n        },\n        {\n            \"accountRef\": \"SDE001\",\n            \"amountPaid\": 108,\n            \"bankCode\": \"1200\",\n            \"currency\": 1,\n            \"type\": \"SR\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Sales Receipt\",\n            \"invRef\": \"\",\n            \"netAmount\": -108,\n            \"taxAmount\": 0,\n            \"grossAmount\": -108,\n            \"foreignNetAmount\": -108,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": -108,\n            \"tranNumber\": 1241,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 108,\n            \"bankFlag\": \"N\",\n            \"bankName\": \"Bank Current Account\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"\",\n            \"foreignAmountPaid\": 108,\n            \"foreignBankAmount\": 108,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 684,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 108,\n            \"recordCreateDate\": \"02/07/2024 16:10:12\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\",\n            \"salesPurchaseRef\": \"SDE001\"\n        },\n        {\n            \"accountRef\": \"SDE001\",\n            \"amountPaid\": 12,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SC\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Settlement Discount including VAT\",\n            \"invRef\": \"\",\n            \"netAmount\": -10,\n            \"taxAmount\": -2,\n            \"grossAmount\": -12,\n            \"foreignNetAmount\": -10,\n            \"foreignTaxAmount\": -2,\n            \"foreignGrossAmount\": -12,\n            \"tranNumber\": 1242,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 12,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"02/07/2024 00:00:00\",\n            \"foreignAmountPaid\": 12,\n            \"foreignBankAmount\": 12,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 685,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:10:13\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\",\n            \"salesPurchaseRef\": \"SDE001\"\n        },\n        {\n            \"accountRef\": \"SDE001\",\n            \"amountPaid\": 285.75,\n            \"bankCode\": \"1200\",\n            \"currency\": 1,\n            \"type\": \"SR\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Sales Receipt\",\n            \"invRef\": \"\",\n            \"netAmount\": -285.75,\n            \"taxAmount\": 0,\n            \"grossAmount\": -285.75,\n            \"foreignNetAmount\": -285.75,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": -285.75,\n            \"tranNumber\": 1243,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 285.75,\n            \"bankFlag\": \"N\",\n            \"bankName\": \"Bank Current Account\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"\",\n            \"foreignAmountPaid\": 285.75,\n            \"foreignBankAmount\": 285.75,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 686,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 285.75,\n            \"recordCreateDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:20:02\",\n            \"salesPurchaseRef\": \"SDE001\"\n        },\n        {\n            \"accountRef\": \"SDE001\",\n            \"amountPaid\": 6.25,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SD\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Sales Discount\",\n            \"invRef\": \"\",\n            \"netAmount\": -6.25,\n            \"taxAmount\": 0,\n            \"grossAmount\": -6.25,\n            \"foreignNetAmount\": -6.25,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": -6.25,\n            \"tranNumber\": 1244,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 6.25,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"\",\n            \"foreignAmountPaid\": 6.25,\n            \"foreignBankAmount\": 6.25,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 687,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\",\n            \"salesPurchaseRef\": \"SDE001\"\n        },\n        {\n            \"accountRef\": \"SDE001\",\n            \"amountPaid\": 25.5,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SC\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Settlement Discount including VAT\",\n            \"invRef\": \"\",\n            \"netAmount\": -21.25,\n            \"taxAmount\": -4.25,\n            \"grossAmount\": -25.5,\n            \"foreignNetAmount\": -21.25,\n            \"foreignTaxAmount\": -4.25,\n            \"foreignGrossAmount\": -25.5,\n            \"tranNumber\": 1245,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 25.5,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"02/07/2024 00:00:00\",\n            \"foreignAmountPaid\": 25.5,\n            \"foreignBankAmount\": 25.5,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 688,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\",\n            \"salesPurchaseRef\": \"SDE001\"\n        },\n        {\n            \"accountRef\": \"MIB001\",\n            \"amountPaid\": 600,\n            \"bankCode\": \"1200\",\n            \"currency\": 1,\n            \"type\": \"SR\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Sales Receipt\",\n            \"invRef\": \"\",\n            \"netAmount\": -600,\n            \"taxAmount\": 0,\n            \"grossAmount\": -600,\n            \"foreignNetAmount\": -600,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": -600,\n            \"tranNumber\": 1246,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 600,\n            \"bankFlag\": \"N\",\n            \"bankName\": \"Bank Current Account\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"\",\n            \"foreignAmountPaid\": 600,\n            \"foreignBankAmount\": 600,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 689,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 600,\n            \"recordCreateDate\": \"02/07/2024 16:20:02\",\n            \"recordModifyDate\": \"02/07/2024 16:23:34\",\n            \"salesPurchaseRef\": \"MIB001\"\n        },\n        {\n            \"accountRef\": \"YOU001\",\n            \"amountPaid\": 529.19999999999993,\n            \"bankCode\": \"1200\",\n            \"currency\": 1,\n            \"type\": \"SR\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Sales Receipt\",\n            \"invRef\": \"\",\n            \"netAmount\": -529.2,\n            \"taxAmount\": 0,\n            \"grossAmount\": -529.2,\n            \"foreignNetAmount\": -529.2,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": -529.2,\n            \"tranNumber\": 1247,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 529.2,\n            \"bankFlag\": \"N\",\n            \"bankName\": \"Bank Current Account\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"\",\n            \"foreignAmountPaid\": 529.19999999999993,\n            \"foreignBankAmount\": 529.2,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 690,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 529.2,\n            \"recordCreateDate\": \"02/07/2024 16:23:34\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\",\n            \"salesPurchaseRef\": \"YOU001\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 220,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SI\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Line1\",\n            \"invRef\": \"88\",\n            \"netAmount\": 200,\n            \"taxAmount\": 20,\n            \"grossAmount\": 220,\n            \"foreignNetAmount\": 200,\n            \"foreignTaxAmount\": 20,\n            \"foreignGrossAmount\": 220,\n            \"tranNumber\": 1248,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": -220,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"01/08/2024 00:00:00\",\n            \"foreignAmountPaid\": 220,\n            \"foreignBankAmount\": -220,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 691,\n            \"invRefNumeric\": 88,\n            \"itemCount\": 2,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:28:26\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 198,\n            \"bankCode\": \"1200\",\n            \"currency\": 1,\n            \"type\": \"SR\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Sales Receipt\",\n            \"invRef\": \"CLTEST\",\n            \"netAmount\": -198,\n            \"taxAmount\": 0,\n            \"grossAmount\": -198,\n            \"foreignNetAmount\": -198,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": -198,\n            \"tranNumber\": 1250,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 198,\n            \"bankFlag\": \"N\",\n            \"bankName\": \"Bank Current Account\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"\",\n            \"foreignAmountPaid\": 198,\n            \"foreignBankAmount\": 198,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 692,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 198,\n            \"recordCreateDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:35:40\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 10,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SD\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Sales Discount\",\n            \"invRef\": \"CLTEST\",\n            \"netAmount\": -10,\n            \"taxAmount\": 0,\n            \"grossAmount\": -10,\n            \"foreignNetAmount\": -10,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": -10,\n            \"tranNumber\": 1251,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 10,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"\",\n            \"foreignAmountPaid\": 10,\n            \"foreignBankAmount\": 10,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 693,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 12,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SC\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Settlement Discount including VAT\",\n            \"invRef\": \"CLTEST\",\n            \"netAmount\": -10,\n            \"taxAmount\": -2,\n            \"grossAmount\": -12,\n            \"foreignNetAmount\": -10,\n            \"foreignTaxAmount\": -2,\n            \"foreignGrossAmount\": -12,\n            \"tranNumber\": 1252,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 12,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"02/07/2024 00:00:00\",\n            \"foreignAmountPaid\": 12,\n            \"foreignBankAmount\": 12,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 694,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:33:08\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 120,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SI\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"1\",\n            \"invRef\": \"89\",\n            \"netAmount\": 100,\n            \"taxAmount\": 20,\n            \"grossAmount\": 120,\n            \"foreignNetAmount\": 100,\n            \"foreignTaxAmount\": 20,\n            \"foreignGrossAmount\": 120,\n            \"tranNumber\": 1253,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": -120,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"01/08/2024 00:00:00\",\n            \"foreignAmountPaid\": 120,\n            \"foreignBankAmount\": -120,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 695,\n            \"invRefNumeric\": 89,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:33:08\",\n            \"recordModifyDate\": \"02/07/2024 16:35:40\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 100,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SI\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"2\",\n            \"invRef\": \"90\",\n            \"netAmount\": 100,\n            \"taxAmount\": 0,\n            \"grossAmount\": 100,\n            \"foreignNetAmount\": 100,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": 100,\n            \"tranNumber\": 1254,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": -100,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"01/08/2024 00:00:00\",\n            \"foreignAmountPaid\": 100,\n            \"foreignBankAmount\": -100,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 696,\n            \"invRefNumeric\": 90,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:33:08\",\n            \"recordModifyDate\": \"02/07/2024 16:35:40\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 220,\n            \"bankCode\": \"1200\",\n            \"currency\": 1,\n            \"type\": \"SR\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Sales Receipt\",\n            \"invRef\": \"\",\n            \"netAmount\": -220,\n            \"taxAmount\": 0,\n            \"grossAmount\": -220,\n            \"foreignNetAmount\": -220,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": -220,\n            \"tranNumber\": 1255,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 220,\n            \"bankFlag\": \"N\",\n            \"bankName\": \"Bank Current Account\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"\",\n            \"foreignAmountPaid\": 220,\n            \"foreignBankAmount\": 220,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 697,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 220,\n            \"recordCreateDate\": \"02/07/2024 16:35:40\",\n            \"recordModifyDate\": \"02/07/2024 16:41:28\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 340,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SI\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"1\",\n            \"invRef\": \"91\",\n            \"netAmount\": 300,\n            \"taxAmount\": 40,\n            \"grossAmount\": 340,\n            \"foreignNetAmount\": 300,\n            \"foreignTaxAmount\": 40,\n            \"foreignGrossAmount\": 340,\n            \"tranNumber\": 1256,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": -340,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"01/08/2024 00:00:00\",\n            \"foreignAmountPaid\": 340,\n            \"foreignBankAmount\": -340,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 698,\n            \"invRefNumeric\": 91,\n            \"itemCount\": 3,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:36:27\",\n            \"recordModifyDate\": \"02/07/2024 16:41:28\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 340,\n            \"bankCode\": \"1200\",\n            \"currency\": 1,\n            \"type\": \"SR\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Sales Receipt\",\n            \"invRef\": \"\",\n            \"netAmount\": -340,\n            \"taxAmount\": 0,\n            \"grossAmount\": -340,\n            \"foreignNetAmount\": -340,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": -340,\n            \"tranNumber\": 1259,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 340,\n            \"bankFlag\": \"N\",\n            \"bankName\": \"Bank Current Account\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"\",\n            \"foreignAmountPaid\": 340,\n            \"foreignBankAmount\": 340,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 699,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 340,\n            \"recordCreateDate\": \"02/07/2024 16:41:28\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 240,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SI\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"1\",\n            \"invRef\": \"92\",\n            \"netAmount\": 200,\n            \"taxAmount\": 40,\n            \"grossAmount\": 240,\n            \"foreignNetAmount\": 200,\n            \"foreignTaxAmount\": 40,\n            \"foreignGrossAmount\": 240,\n            \"tranNumber\": 1260,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": -240,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"01/08/2024 00:00:00\",\n            \"foreignAmountPaid\": 240,\n            \"foreignBankAmount\": -240,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 700,\n            \"invRefNumeric\": 92,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:42:08\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 60,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SI\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"\",\n            \"invRef\": \"93\",\n            \"netAmount\": 60,\n            \"taxAmount\": 0,\n            \"grossAmount\": 60,\n            \"foreignNetAmount\": 60,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": 60,\n            \"tranNumber\": 1261,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": -60,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"01/08/2024 00:00:00\",\n            \"foreignAmountPaid\": 60,\n            \"foreignBankAmount\": -60,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 701,\n            \"invRefNumeric\": 93,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:42:08\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 270,\n            \"bankCode\": \"1200\",\n            \"currency\": 1,\n            \"type\": \"SR\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Sales Receipt\",\n            \"invRef\": \"\",\n            \"netAmount\": -270,\n            \"taxAmount\": 0,\n            \"grossAmount\": -270,\n            \"foreignNetAmount\": -270,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": -270,\n            \"tranNumber\": 1262,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 270,\n            \"bankFlag\": \"N\",\n            \"bankName\": \"Bank Current Account\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"\",\n            \"foreignAmountPaid\": 270,\n            \"foreignBankAmount\": 270,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 702,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 270,\n            \"recordCreateDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"03/07/2024 16:38:38\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 6,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SC\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Settlement Discount including VAT\",\n            \"invRef\": \"\",\n            \"netAmount\": -6,\n            \"taxAmount\": 0,\n            \"grossAmount\": -6,\n            \"foreignNetAmount\": -6,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": -6,\n            \"tranNumber\": 1263,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 6,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"02/07/2024 00:00:00\",\n            \"foreignAmountPaid\": 6,\n            \"foreignBankAmount\": 6,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 703,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"TEST\",\n            \"amountPaid\": 24,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"SC\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"details\": \"Settlement Discount including VAT\",\n            \"invRef\": \"\",\n            \"netAmount\": -20,\n            \"taxAmount\": -4,\n            \"grossAmount\": -24,\n            \"foreignNetAmount\": -20,\n            \"foreignTaxAmount\": -4,\n            \"foreignGrossAmount\": -24,\n            \"tranNumber\": 1264,\n            \"userName\": \"MANAGER\",\n            \"outstanding\": 0,\n            \"bankAmount\": 24,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"02/07/2024 00:00:00\",\n            \"foreignAmountPaid\": 24,\n            \"foreignBankAmount\": 24,\n            \"foreignOutstanding\": 0,\n            \"foreignRate\": 1,\n            \"agedBalance\": 0,\n            \"headerNumber\": 704,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\",\n            \"salesPurchaseRef\": \"TEST\"\n        },\n        {\n            \"accountRef\": \"NEWS\",\n            \"amountPaid\": 10,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"PI\",\n            \"date\": \"03/07/2024 00:00:00\",\n            \"details\": \"TEST DETAILS\",\n            \"invRef\": \"INV1234\",\n            \"netAmount\": -100,\n            \"taxAmount\": -20,\n            \"grossAmount\": -120,\n            \"foreignNetAmount\": -100,\n            \"foreignTaxAmount\": -20,\n            \"foreignGrossAmount\": -120,\n            \"tranNumber\": 1265,\n            \"userName\": \"SDO_USER_1\",\n            \"outstanding\": 110,\n            \"bankAmount\": 120,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"03/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"02/08/2024 00:00:00\",\n            \"foreignAmountPaid\": 10,\n            \"foreignBankAmount\": 120,\n            \"foreignOutstanding\": 110,\n            \"foreignRate\": 1,\n            \"agedBalance\": 110,\n            \"headerNumber\": 705,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"N\",\n            \"paidStatus\": \"p\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"03/07/2024 16:16:13\",\n            \"recordModifyDate\": \"03/07/2024 16:42:55\",\n            \"salesPurchaseRef\": \"NEWS\"\n        },\n        {\n            \"accountRef\": \"NEWS\",\n            \"amountPaid\": 0,\n            \"bankCode\": \"\",\n            \"currency\": 1,\n            \"type\": \"PC\",\n            \"date\": \"03/07/2024 00:00:00\",\n            \"details\": \"Test of Purchase Credit\",\n            \"invRef\": \"INV1234\",\n            \"netAmount\": 20,\n            \"taxAmount\": 4,\n            \"grossAmount\": 24,\n            \"foreignNetAmount\": 20,\n            \"foreignTaxAmount\": 4,\n            \"foreignGrossAmount\": 24,\n            \"tranNumber\": 1266,\n            \"userName\": \"SDO_USER_1\",\n            \"outstanding\": -24,\n            \"bankAmount\": -24,\n            \"bankFlag\": \"-\",\n            \"bankName\": \"\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"03/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"02/08/2024 00:00:00\",\n            \"foreignAmountPaid\": 0,\n            \"foreignBankAmount\": -24,\n            \"foreignOutstanding\": -24,\n            \"foreignRate\": 1,\n            \"agedBalance\": -24,\n            \"headerNumber\": 706,\n            \"invRefNumeric\": 0,\n            \"itemCount\": 1,\n            \"paidFlag\": \"N\",\n            \"paidStatus\": \"*\",\n            \"payment\": 0,\n            \"recordCreateDate\": \"03/07/2024 16:17:20\",\n            \"recordModifyDate\": \"03/07/2024 16:17:20\",\n            \"salesPurchaseRef\": \"NEWS\"\n        },\n        {\n            \"accountRef\": \"SMOK0001\",\n            \"amountPaid\": 0,\n            \"bankCode\": \"1200\",\n            \"currency\": 1,\n            \"type\": \"SA\",\n            \"date\": \"03/07/2024 00:00:00\",\n            \"details\": \"Payment on account\",\n            \"invRef\": \"030724-1\",\n            \"netAmount\": -3000,\n            \"taxAmount\": 0,\n            \"grossAmount\": -3000,\n            \"foreignNetAmount\": -3000,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": -3000,\n            \"tranNumber\": 1267,\n            \"userName\": \"SDO_USER_1\",\n            \"outstanding\": -3000,\n            \"bankAmount\": 3000,\n            \"bankFlag\": \"N\",\n            \"bankName\": \"Bank Current Account\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"03/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"\",\n            \"foreignAmountPaid\": 0,\n            \"foreignBankAmount\": 3000,\n            \"foreignOutstanding\": -3000,\n            \"foreignRate\": 1,\n            \"agedBalance\": -3000,\n            \"headerNumber\": 707,\n            \"invRefNumeric\": 30724,\n            \"itemCount\": 1,\n            \"paidFlag\": \"N\",\n            \"paidStatus\": \"*\",\n            \"payment\": 3000,\n            \"recordCreateDate\": \"03/07/2024 16:38:38\",\n            \"recordModifyDate\": \"03/07/2024 16:40:13\",\n            \"salesPurchaseRef\": \"SMOK0001\"\n        },\n        {\n            \"accountRef\": \"SMOK0001\",\n            \"amountPaid\": 0,\n            \"bankCode\": \"1200\",\n            \"currency\": 1,\n            \"type\": \"SA\",\n            \"date\": \"03/07/2024 00:00:00\",\n            \"details\": \"Payment on account\",\n            \"invRef\": \"030724-1\",\n            \"netAmount\": -3000,\n            \"taxAmount\": 0,\n            \"grossAmount\": -3000,\n            \"foreignNetAmount\": -3000,\n            \"foreignTaxAmount\": 0,\n            \"foreignGrossAmount\": -3000,\n            \"tranNumber\": 1268,\n            \"userName\": \"SDO_USER_1\",\n            \"outstanding\": -3000,\n            \"bankAmount\": 3000,\n            \"bankFlag\": \"N\",\n            \"bankName\": \"Bank Current Account\",\n            \"dateBankReconciled\": \"\",\n            \"dateEntered\": \"03/07/2024 00:00:00\",\n            \"deletedFlag\": 0,\n            \"disputed\": \"0\",\n            \"dueDate\": \"\",\n            \"foreignAmountPaid\": 0,\n            \"foreignBankAmount\": 3000,\n            \"foreignOutstanding\": -3000,\n            \"foreignRate\": 1,\n            \"agedBalance\": -3000,\n            \"headerNumber\": 708,\n            \"invRefNumeric\": 30724,\n            \"itemCount\": 1,\n            \"paidFlag\": \"N\",\n            \"paidStatus\": \"*\",\n            \"payment\": 3000,\n            \"recordCreateDate\": \"03/07/2024 16:40:13\",\n            \"recordModifyDate\": \"03/07/2024 16:40:13\",\n            \"salesPurchaseRef\": \"SMOK0001\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"259fce9a-dbd8-4589-8b07-c4e9eeb58806"},{"name":"Create Header Transaction","id":"785ef934-15d5-4be9-b32b-70c7aa20cdf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"date\": \"03/07/2024\",\n    \"invRef\": \"030724-4\",\n    \"bankCode\": \"1220\",\n    \"taxAmount\": 20,\n    \"netAmount\": 100,\n    \"details\": \"123345\",\n    \"currency\": 1,\n    \"accountRef\": \"a1d001\",\n    \"taxCode\": 9,\n    \"type\": 3\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/transactionPost","description":"<h2 id=\"post-transaction\">POST Transaction</h2>\n<ul>\n<li><p>Endpoint: <code>api/transactionPost</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Description: Allows you to post transactions directly into sage</p>\n</li>\n<li><p>parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">accountRef // String, required, max 8 chars\ndate // String, required,dd/mm/yyyy\nnominalCode // String, required, max 4 chars\nbankCode // String, only required for payments/receipts, max 8 chars\ndetails // string, optional, max 60 chars\ntaxCode // int, required, max 4 chars\ninvRef // String, required, max 30 chars\ntaxAmount // double, optional (see note)\nnetAmount // double, optional (see note)\ntype // int, required, see TYPE Field, max 1 chars\namountPaid // double, optional, only used for payments, max 8 chars\nexRef // String, optional, max 30 chars\ncurrency // double, optional (see note)\nRate // double, optional (see note)\nshouldAllocatePayment // bool, optional, default false (see note)\nuserName // string, optional, max 30 chars\ndueDate // string, optional, dd/mm/yyyy\ncostCode // String, optional\nprojectID // string, optional\ndeptNumber // int, optional, max 3 chars\n\n</code></pre>\n<ul>\n<li>Notes:</li>\n</ul>\n<p>The response ID given for a successful request is the HEADER_NUMBER in sage NOT TRAN_NUMBER.</p>\n<p>Transactions must be posted in the same currency as the account you are posting to.</p>\n<p>For base currency (GBP) transactions you must use <code>netAmount</code> and <code>taxAmount</code> fields.<br />For foreign currency transactions you must use <code>foreignNetAmount</code>, <code>foreignRate</code> and <code>foreignTaxAmount</code> fields. If the forgeignRate field is not set, it will load the rate from the currency in Sage. For Sales Receipts (SR's) on V29, the <code>foreignRate</code> must match the <code>foreignRate</code> on the Sales Invoice (SI) transaction.</p>\n<p>When posting a PP, the invRef value should relate to the invRef value that was posted on the Purchase Invoice transaction you wish to allocate the payment against.</p>\n<p>During the allocation process, if the API is unable to find a matching PI for the given invRef (accountRefs must match too) then the API will post a PA – Purchase Payment on Account instead.</p>\n<p>The above behaviour is replicated on the Sales side, so if a Sales Receipt - SR cannot be matched against a Sales Invoice - SI, it will post the transaction as a SA – Sales Receipt on Account.</p>\n<h3 id=\"type-field\">TYPE Field</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Type   Value   Description \nSI     1       Sales Invoice \nSC     2       Sales Credit \nSR     3       Sales Receipt \nSA     4       Sales Receipt on Account \nSD     5       Sales Discount \nPI     6       Purchase Invoice \nPC     7       Purchase Credit \nPP     8       Purchase Payment \nPA     9       Purchase Payment on Account \nPD     10      Purchase Discount \nBP     11      Bank Payment \nBR     12      Bank Receipt \nCP     13      Cash Payment \nCR     14      Cash Receipt \nJD     15      Journal Debit \nJC     16      Journal Credit \nVP     17      Visa Payment \nVR     18      Visa Receipt \nCC     19      Project Cost Credit \nCD     20      Project Cost Debit - Charge \nPAI    21      Project Adjustment In \nPAO    22      Project Adjustment Out \nCO     23      Project Committed Cost \nSP     24      Sales Payment \nPR     25      Purchase Receipt\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","transactionPost"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"8580ac15-771d-4989-8cdf-b525f241bb1d","name":"Create Header Transaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"date\": \"03/07/2024\",\n    \"invRef\": \"030724-4\",\n    \"bankCode\": \"1220\",\n    \"taxAmount\": 20,\n    \"netAmount\": 100,\n    \"details\": \"123345\",\n    \"currency\": 1,\n    \"accountRef\": \"a1d001\",\n    \"taxCode\": 9,\n    \"type\": 3\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/transactionPost"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 14 Nov 2024 15:23:18 GMT"},{"key":"Content-Length","value":"57"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 687,\n    \"message\": null\n}"}],"_postman_id":"785ef934-15d5-4be9-b32b-70c7aa20cdf2"},{"name":"Create Batch Header Transaction","id":"ca08f5d2-af7b-4c93-8299-5fab189737a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": 1,\n    \"date\": \"03/07/2024\",\n    \"nominalCode\": \"4000\",\n    \"invRef\": \"I13\",\n    \"userName\": \"Hyperext\",\n    \"accountRef\": \"SMOK0001\",\n    \"details\": \"Batch Transaction\",\n    \"Lines\": [\n        {\n            \"nominalCode\": \"4000\",\n            \"amount\": 500.0,\n            \"details\": \"Line 1 details new\",\n            \"taxCode\": 3,\n            \"taxAmount\": 75.0,\n            \"netAmount\": 425.0,\n            \"deptNumber\": 2,\n            \"exRef\": \"EX456\"\n        },\n        {\n            \"nominalCode\": \"4000\",\n            \"amount\": 750.0,\n            \"details\": \"Line 2 details new\",\n            \"taxCode\": 4,\n            \"taxAmount\": 112.5,\n            \"netAmount\": 637.5,\n            \"deptNumber\": 3,\n            \"exRef\": \"EX789\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/batchtransactionPost","description":"<h2 id=\"post-batch-header-transaction\">POST Batch Header Transaction</h2>\n<ul>\n<li><p>Endpoint: <code>api/batchtransactionPost</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Description: Allows you to post batch transactions directly into ledger</p>\n</li>\n<li><p>parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">type // int, required \ndate // String, required,dd/mm/yyyy\ninvRef // String, required, max 30 chars\naccountRef // String, required, max 8 chars\nbankCode // String, optional, max 8 chars\nuserName // string, optional, max 30 chars\ndueDate // string, optional, dd/mm/yyyy\ndetails // string, optional, max 60 chars\nLines\n    nominalCode // String, required, max 4 chars\n    taxAmount // double, required \n    netAmount // double, required \n    taxCode // int, required, max 4 chars\n        currency // Required only to be sent with foreign rate transactions\n    amount // int, optional, max 8 chars\n    exRef // String, optional, max 30 chars\n    deptNumber // int, optional, max 3 chars\n\n</code></pre>\n<ul>\n<li>NOTES</li>\n</ul>\n<p>This endpoint can not be used to allocate payments.</p>\n<p>The response ID given for a successful request is the HEADER_NUMBER in sage NOT TRAN_NUMBER.</p>\n<p>Transactions must be posted in the same currency as the account you are posting to.</p>\n<p>For base currency (GBP) transactions you must use <code>netAmount</code> and <code>taxAmount</code> fields.<br />For foreign currency transactions you must use <code>foreignNetAmount</code>, <code>foreignRate</code> and <code>foreignTaxAmount</code> fields. If the forgeignRate field is not set, it will load the rate from the currency in Sage. For Sales Receipts (SR's) on V29, the <code>foreignRate</code> must match the <code>foreignRate</code> on the Sales Invoice (SI) transaction.</p>\n<p>When posting a PP, the invRef value should relate to the invRef value that was posted on the Purchase Invoice transaction you wish to allocate the payment against.</p>\n<p>During the allocation process, if the API is unable to find a matching PI for the given invRef (accountRefs must match too) then the API will post a PA – Purchase Payment on Account instead.</p>\n<p>The above behaviour is replicated on the Sales side, so if a Sales Receipt - SR cannot be matched against a Sales Invoice - SI, it will post the transaction as a SA – Sales Receipt on Account.</p>\n<h3 id=\"type-field\">TYPE Field</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">Type   Value  Description \nSI     1      Sales Invoice \nSC     2      Sales Credit \nSR     3      Sales Receipt \nSA     4      Sales Receipt on Account \nSD     5      Sales Discount \nPI     6      Purchase Invoice \nPC     7      Purchase Credit \nPP     8      Purchase Payment \nPA     9      Purchase Payment on Account \nPD     10     Purchase Discount \nBP     11     Bank Payment \nBR     12     Bank Receipt \nCP     13     Cash Payment \nCR     14     Cash Receipt \nJD     15     Journal Debit \nJC     16     Journal Credit \nVP     17     Visa Payment \nVR     18     Visa Receipt \nCC     19     Project Cost Credit \nCD     20     Project Cost Debit - Charge \nPAI    21     Project Adjustment In \nPAO    22     Project Adjustment Out \nCO     23     Project Committed Cost \nSP     24     Sales Payment \nPR     25     Purchase Receipt\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","batchtransactionPost"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"279aa7fc-b8a7-4a4d-ad91-1f592ae978eb","name":"Create Batch Header Transaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"type\": 1,\n    \"date\": \"03/07/2024\",\n    \"nominalCode\": \"4000\",\n    \"invRef\": \"I13\",\n    \"userName\": \"Hyperext\",\n    \"accountRef\": \"SMOK0001\",\n    \"details\": \"Batch Transaction\",\n    \"Lines\": [\n        {\n            \"nominalCode\": \"4000\",\n            \"amount\": 500.0,\n            \"details\": \"Line 1 details new\",\n            \"taxCode\": 3,\n            \"taxAmount\": 75.0,\n            \"netAmount\": 425.0,\n            \"deptNumber\": 2,\n            \"exRef\": \"EX456\"\n        },\n        {\n            \"nominalCode\": \"4000\",\n            \"amount\": 750.0,\n            \"details\": \"Line 2 details new\",\n            \"taxCode\": 4,\n            \"taxAmount\": 112.5,\n            \"netAmount\": 637.5,\n            \"deptNumber\": 3,\n            \"exRef\": \"EX789\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/batchtransactionPost"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 16:01:48 GMT"},{"key":"Content-Length","value":"57"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 710,\n    \"message\": null\n}"}],"_postman_id":"ca08f5d2-af7b-4c93-8299-5fab189737a0"},{"name":"Search Audit Splits","id":"f265fdd5-1af3-44ef-a261-c999a074c27a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"DATE\",\r\n        \"type\": \"gt\",\r\n        \"value\": \"01/01/2026\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchSplit","description":"<h2 id=\"search-splits\">Search Splits</h2>\n<ul>\n<li><p>Description: Searches the AUDIT_SPLIT table in Sage.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchSplit</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchSplit"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f97a5da5-0b62-41b6-8151-6c68f2ec52a4","name":"Search Audit Splits","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"company","value":"{{company}}","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"DATE\",\r\n        \"type\": \"gt\",\r\n        \"value\": \"01/03/2024\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchSplit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:56:03 GMT"},{"key":"Content-Length","value":"29144"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"amountPaid\": 120,\n            \"netAmount\": 100,\n            \"taxAmount\": 20,\n            \"nominalCode\": \"4000\",\n            \"details\": \"Line 1\",\n            \"transactionNumber\": 1235,\n            \"headerNumber\": 681,\n            \"accountRef\": \"SDE001\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 120,\n            \"foreignGrossAmount\": 120,\n            \"foreignNetAmount\": 100,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 20,\n            \"grossAmount\": 120,\n            \"invRef\": \"85\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 15:58:02\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\",\n            \"splitNumber\": 1235,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 62.5,\n            \"netAmount\": 62.5,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"4000\",\n            \"details\": \"Line 2\",\n            \"transactionNumber\": 1236,\n            \"headerNumber\": 681,\n            \"accountRef\": \"SDE001\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 62.5,\n            \"foreignGrossAmount\": 62.5,\n            \"foreignNetAmount\": 62.5,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": 62.5,\n            \"invRef\": \"85\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 15:58:02\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\",\n            \"splitNumber\": 1236,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T0\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 135,\n            \"netAmount\": 112.5,\n            \"taxAmount\": 22.5,\n            \"nominalCode\": \"4000\",\n            \"details\": \"Line 3\",\n            \"transactionNumber\": 1237,\n            \"headerNumber\": 681,\n            \"accountRef\": \"SDE001\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 135,\n            \"foreignGrossAmount\": 135,\n            \"foreignNetAmount\": 112.5,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 22.5,\n            \"grossAmount\": 135,\n            \"invRef\": \"85\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 15:58:02\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\",\n            \"splitNumber\": 1237,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 517.43999999999994,\n            \"netAmount\": 431.2,\n            \"taxAmount\": 86.24,\n            \"nominalCode\": \"4000\",\n            \"details\": \"Whiteboard - Drywipe (1000 x 1500)\",\n            \"transactionNumber\": 1238,\n            \"headerNumber\": 682,\n            \"accountRef\": \"YOU001\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 517.43999999999994,\n            \"foreignGrossAmount\": 517.43999999999994,\n            \"foreignNetAmount\": 431.2,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 86.24,\n            \"grossAmount\": 517.43999999999994,\n            \"invRef\": \"86\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:01:47\",\n            \"recordModifyDate\": \"02/07/2024 16:23:34\",\n            \"splitNumber\": 1238,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 11.76,\n            \"netAmount\": 9.8,\n            \"taxAmount\": 1.9600000000000002,\n            \"nominalCode\": \"4000\",\n            \"details\": \"Calculator - Desktop\",\n            \"transactionNumber\": 1239,\n            \"headerNumber\": 682,\n            \"accountRef\": \"YOU001\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 11.76,\n            \"foreignGrossAmount\": 11.760000000000002,\n            \"foreignNetAmount\": 9.8,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 1.9600000000000002,\n            \"grossAmount\": 11.760000000000002,\n            \"invRef\": \"86\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:01:47\",\n            \"recordModifyDate\": \"02/07/2024 16:23:34\",\n            \"splitNumber\": 1239,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 120,\n            \"netAmount\": 100,\n            \"taxAmount\": 20,\n            \"nominalCode\": \"4000\",\n            \"details\": \"\",\n            \"transactionNumber\": 1240,\n            \"headerNumber\": 683,\n            \"accountRef\": \"SDE001\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 120,\n            \"foreignGrossAmount\": 120,\n            \"foreignNetAmount\": 100,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 20,\n            \"grossAmount\": 120,\n            \"invRef\": \"87\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:09:25\",\n            \"recordModifyDate\": \"02/07/2024 16:10:13\",\n            \"splitNumber\": 1240,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 108,\n            \"netAmount\": -108,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"1200\",\n            \"details\": \"Sales Receipt\",\n            \"transactionNumber\": 1241,\n            \"headerNumber\": 684,\n            \"accountRef\": \"SDE001\",\n            \"bankCode\": \"1200\",\n            \"bankFlag\": \"N\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 108,\n            \"foreignGrossAmount\": -108,\n            \"foreignNetAmount\": -108,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": -108,\n            \"invRef\": \"\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 108,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:10:12\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\",\n            \"splitNumber\": 1241,\n            \"stmtText\": \"Payment\",\n            \"taxCode\": \"T9\",\n            \"type\": \"SR\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"-\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 12,\n            \"netAmount\": -10,\n            \"taxAmount\": -2,\n            \"nominalCode\": \"4009\",\n            \"details\": \"Settlement Discount including VAT\",\n            \"transactionNumber\": 1242,\n            \"headerNumber\": 685,\n            \"accountRef\": \"SDE001\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 12,\n            \"foreignGrossAmount\": -12,\n            \"foreignNetAmount\": -10,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": -2,\n            \"grossAmount\": -12,\n            \"invRef\": \"\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:10:13\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\",\n            \"splitNumber\": 1242,\n            \"stmtText\": \"Credit\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SC\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 285.75,\n            \"netAmount\": -285.75,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"1200\",\n            \"details\": \"Sales Receipt\",\n            \"transactionNumber\": 1243,\n            \"headerNumber\": 686,\n            \"accountRef\": \"SDE001\",\n            \"bankCode\": \"1200\",\n            \"bankFlag\": \"N\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 285.75,\n            \"foreignGrossAmount\": -285.75,\n            \"foreignNetAmount\": -285.75,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": -285.75,\n            \"invRef\": \"\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 285.75,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:20:02\",\n            \"splitNumber\": 1243,\n            \"stmtText\": \"Payment\",\n            \"taxCode\": \"T9\",\n            \"type\": \"SR\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"-\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 6.25,\n            \"netAmount\": -6.25,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"4009\",\n            \"details\": \"Sales Discount\",\n            \"transactionNumber\": 1244,\n            \"headerNumber\": 687,\n            \"accountRef\": \"SDE001\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 6.25,\n            \"foreignGrossAmount\": -6.25,\n            \"foreignNetAmount\": -6.25,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": -6.25,\n            \"invRef\": \"\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\",\n            \"splitNumber\": 1244,\n            \"stmtText\": \"Discount\",\n            \"taxCode\": \"T9\",\n            \"type\": \"SD\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"-\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 25.5,\n            \"netAmount\": -21.25,\n            \"taxAmount\": -4.25,\n            \"nominalCode\": \"4009\",\n            \"details\": \"Settlement Discount including VAT\",\n            \"transactionNumber\": 1245,\n            \"headerNumber\": 688,\n            \"accountRef\": \"SDE001\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 25.5,\n            \"foreignGrossAmount\": -25.5,\n            \"foreignNetAmount\": -21.25,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": -4.25,\n            \"grossAmount\": -25.5,\n            \"invRef\": \"\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\",\n            \"splitNumber\": 1245,\n            \"stmtText\": \"Credit\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SC\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 600,\n            \"netAmount\": -600,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"1200\",\n            \"details\": \"Sales Receipt\",\n            \"transactionNumber\": 1246,\n            \"headerNumber\": 689,\n            \"accountRef\": \"MIB001\",\n            \"bankCode\": \"1200\",\n            \"bankFlag\": \"N\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 600,\n            \"foreignGrossAmount\": -600,\n            \"foreignNetAmount\": -600,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": -600,\n            \"invRef\": \"\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 600,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:20:02\",\n            \"recordModifyDate\": \"02/07/2024 16:23:34\",\n            \"splitNumber\": 1246,\n            \"stmtText\": \"Payment\",\n            \"taxCode\": \"T9\",\n            \"type\": \"SR\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"-\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 529.19999999999993,\n            \"netAmount\": -529.2,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"1200\",\n            \"details\": \"Sales Receipt\",\n            \"transactionNumber\": 1247,\n            \"headerNumber\": 690,\n            \"accountRef\": \"YOU001\",\n            \"bankCode\": \"1200\",\n            \"bankFlag\": \"N\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 529.19999999999993,\n            \"foreignGrossAmount\": -529.2,\n            \"foreignNetAmount\": -529.2,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": -529.2,\n            \"invRef\": \"\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 529.2,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:23:34\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\",\n            \"splitNumber\": 1247,\n            \"stmtText\": \"Payment\",\n            \"taxCode\": \"T9\",\n            \"type\": \"SR\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"-\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 120,\n            \"netAmount\": 100,\n            \"taxAmount\": 20,\n            \"nominalCode\": \"4002\",\n            \"details\": \"Line1\",\n            \"transactionNumber\": 1248,\n            \"headerNumber\": 691,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 120,\n            \"foreignGrossAmount\": 120,\n            \"foreignNetAmount\": 100,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 20,\n            \"grossAmount\": 120,\n            \"invRef\": \"88\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:28:26\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\",\n            \"splitNumber\": 1248,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 100,\n            \"netAmount\": 100,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"4002\",\n            \"details\": \"Line2\",\n            \"transactionNumber\": 1249,\n            \"headerNumber\": 691,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 100,\n            \"foreignGrossAmount\": 100,\n            \"foreignNetAmount\": 100,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": 100,\n            \"invRef\": \"88\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:28:27\",\n            \"recordModifyDate\": \"02/07/2024 16:33:08\",\n            \"splitNumber\": 1249,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T0\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 198,\n            \"netAmount\": -198,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"1200\",\n            \"details\": \"Sales Receipt\",\n            \"transactionNumber\": 1250,\n            \"headerNumber\": 692,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"1200\",\n            \"bankFlag\": \"N\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 198,\n            \"foreignGrossAmount\": -198,\n            \"foreignNetAmount\": -198,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": -198,\n            \"invRef\": \"CLTEST\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 198,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:35:40\",\n            \"splitNumber\": 1250,\n            \"stmtText\": \"Payment\",\n            \"taxCode\": \"T9\",\n            \"type\": \"SR\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"-\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 10,\n            \"netAmount\": -10,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"4009\",\n            \"details\": \"Sales Discount\",\n            \"transactionNumber\": 1251,\n            \"headerNumber\": 693,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 10,\n            \"foreignGrossAmount\": -10,\n            \"foreignNetAmount\": -10,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": -10,\n            \"invRef\": \"CLTEST\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\",\n            \"splitNumber\": 1251,\n            \"stmtText\": \"Discount\",\n            \"taxCode\": \"T9\",\n            \"type\": \"SD\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"-\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 12,\n            \"netAmount\": -10,\n            \"taxAmount\": -2,\n            \"nominalCode\": \"4009\",\n            \"details\": \"Settlement Discount including VAT\",\n            \"transactionNumber\": 1252,\n            \"headerNumber\": 694,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 12,\n            \"foreignGrossAmount\": -12,\n            \"foreignNetAmount\": -10,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": -2,\n            \"grossAmount\": -12,\n            \"invRef\": \"CLTEST\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\",\n            \"splitNumber\": 1252,\n            \"stmtText\": \"Credit\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SC\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 120,\n            \"netAmount\": 100,\n            \"taxAmount\": 20,\n            \"nominalCode\": \"4002\",\n            \"details\": \"1\",\n            \"transactionNumber\": 1253,\n            \"headerNumber\": 695,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 120,\n            \"foreignGrossAmount\": 120,\n            \"foreignNetAmount\": 100,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 20,\n            \"grossAmount\": 120,\n            \"invRef\": \"89\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:33:08\",\n            \"recordModifyDate\": \"02/07/2024 16:35:40\",\n            \"splitNumber\": 1253,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 100,\n            \"netAmount\": 100,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"4002\",\n            \"details\": \"2\",\n            \"transactionNumber\": 1254,\n            \"headerNumber\": 696,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 100,\n            \"foreignGrossAmount\": 100,\n            \"foreignNetAmount\": 100,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": 100,\n            \"invRef\": \"90\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:33:08\",\n            \"recordModifyDate\": \"02/07/2024 16:36:27\",\n            \"splitNumber\": 1254,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T0\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 220,\n            \"netAmount\": -220,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"1200\",\n            \"details\": \"Sales Receipt\",\n            \"transactionNumber\": 1255,\n            \"headerNumber\": 697,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"1200\",\n            \"bankFlag\": \"N\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 220,\n            \"foreignGrossAmount\": -220,\n            \"foreignNetAmount\": -220,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": -220,\n            \"invRef\": \"\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 220,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:35:40\",\n            \"recordModifyDate\": \"02/07/2024 16:41:28\",\n            \"splitNumber\": 1255,\n            \"stmtText\": \"Payment\",\n            \"taxCode\": \"T9\",\n            \"type\": \"SR\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"-\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 120,\n            \"netAmount\": 100,\n            \"taxAmount\": 20,\n            \"nominalCode\": \"4002\",\n            \"details\": \"1\",\n            \"transactionNumber\": 1256,\n            \"headerNumber\": 698,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 120,\n            \"foreignGrossAmount\": 120,\n            \"foreignNetAmount\": 100,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 20,\n            \"grossAmount\": 120,\n            \"invRef\": \"91\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:36:27\",\n            \"recordModifyDate\": \"02/07/2024 16:41:28\",\n            \"splitNumber\": 1256,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 100,\n            \"netAmount\": 100,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"4002\",\n            \"details\": \"2\",\n            \"transactionNumber\": 1257,\n            \"headerNumber\": 698,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 100,\n            \"foreignGrossAmount\": 100,\n            \"foreignNetAmount\": 100,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": 100,\n            \"invRef\": \"91\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:36:27\",\n            \"recordModifyDate\": \"02/07/2024 16:41:28\",\n            \"splitNumber\": 1257,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T0\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 120,\n            \"netAmount\": 100,\n            \"taxAmount\": 20,\n            \"nominalCode\": \"4002\",\n            \"details\": \"3\",\n            \"transactionNumber\": 1258,\n            \"headerNumber\": 698,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 120,\n            \"foreignGrossAmount\": 120,\n            \"foreignNetAmount\": 100,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 20,\n            \"grossAmount\": 120,\n            \"invRef\": \"91\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:36:27\",\n            \"recordModifyDate\": \"02/07/2024 16:42:08\",\n            \"splitNumber\": 1258,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 340,\n            \"netAmount\": -340,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"1200\",\n            \"details\": \"Sales Receipt\",\n            \"transactionNumber\": 1259,\n            \"headerNumber\": 699,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"1200\",\n            \"bankFlag\": \"N\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 340,\n            \"foreignGrossAmount\": -340,\n            \"foreignNetAmount\": -340,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": -340,\n            \"invRef\": \"\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 340,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:41:28\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\",\n            \"splitNumber\": 1259,\n            \"stmtText\": \"Payment\",\n            \"taxCode\": \"T9\",\n            \"type\": \"SR\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"-\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 240,\n            \"netAmount\": 200,\n            \"taxAmount\": 40,\n            \"nominalCode\": \"4002\",\n            \"details\": \"1\",\n            \"transactionNumber\": 1260,\n            \"headerNumber\": 700,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 240,\n            \"foreignGrossAmount\": 240,\n            \"foreignNetAmount\": 200,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 40,\n            \"grossAmount\": 240,\n            \"invRef\": \"92\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:42:08\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\",\n            \"splitNumber\": 1260,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 60,\n            \"netAmount\": 60,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"4002\",\n            \"details\": \"\",\n            \"transactionNumber\": 1261,\n            \"headerNumber\": 701,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 60,\n            \"foreignGrossAmount\": 60,\n            \"foreignNetAmount\": 60,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": 60,\n            \"invRef\": \"93\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:42:08\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\",\n            \"splitNumber\": 1261,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T0\",\n            \"type\": \"SI\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 270,\n            \"netAmount\": -270,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"1200\",\n            \"details\": \"Sales Receipt\",\n            \"transactionNumber\": 1262,\n            \"headerNumber\": 702,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"1200\",\n            \"bankFlag\": \"N\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 270,\n            \"foreignGrossAmount\": -270,\n            \"foreignNetAmount\": -270,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": -270,\n            \"invRef\": \"\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 270,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"03/07/2024 16:38:38\",\n            \"splitNumber\": 1262,\n            \"stmtText\": \"Payment\",\n            \"taxCode\": \"T9\",\n            \"type\": \"SR\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"-\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 6,\n            \"netAmount\": -6,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"4009\",\n            \"details\": \"Settlement Discount including VAT\",\n            \"transactionNumber\": 1263,\n            \"headerNumber\": 703,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 6,\n            \"foreignGrossAmount\": -6,\n            \"foreignNetAmount\": -6,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": -6,\n            \"invRef\": \"\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\",\n            \"splitNumber\": 1263,\n            \"stmtText\": \"Credit\",\n            \"taxCode\": \"T0\",\n            \"type\": \"SC\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 24,\n            \"netAmount\": -20,\n            \"taxAmount\": -4,\n            \"nominalCode\": \"4009\",\n            \"details\": \"Settlement Discount including VAT\",\n            \"transactionNumber\": 1264,\n            \"headerNumber\": 704,\n            \"accountRef\": \"TEST\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"02/07/2024 00:00:00\",\n            \"dateEntered\": \"02/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Sales\",\n            \"deptNumber\": 1,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 24,\n            \"foreignGrossAmount\": -24,\n            \"foreignNetAmount\": -20,\n            \"foreignOutstanding\": 0,\n            \"foreignTaxAmount\": -4,\n            \"grossAmount\": -24,\n            \"invRef\": \"\",\n            \"outstanding\": 0,\n            \"paidFlag\": \"Y\",\n            \"paidStatus\": \"\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\",\n            \"splitNumber\": 1264,\n            \"stmtText\": \"Credit\",\n            \"taxCode\": \"T1\",\n            \"type\": \"SC\",\n            \"userName\": \"MANAGER\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 10,\n            \"netAmount\": -100,\n            \"taxAmount\": -20,\n            \"nominalCode\": \"5000\",\n            \"details\": \"details123\",\n            \"transactionNumber\": 1265,\n            \"headerNumber\": 705,\n            \"accountRef\": \"NEWS\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"03/07/2024 00:00:00\",\n            \"dateEntered\": \"03/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 10,\n            \"foreignGrossAmount\": -120,\n            \"foreignNetAmount\": -100,\n            \"foreignOutstanding\": 110,\n            \"foreignTaxAmount\": -20,\n            \"grossAmount\": -120,\n            \"invRef\": \"INV1234\",\n            \"outstanding\": 110,\n            \"paidFlag\": \"N\",\n            \"paidStatus\": \"p\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"03/07/2024 16:16:13\",\n            \"recordModifyDate\": \"03/07/2024 16:42:55\",\n            \"splitNumber\": 1265,\n            \"stmtText\": \"Goods/Services\",\n            \"taxCode\": \"T1\",\n            \"type\": \"PI\",\n            \"userName\": \"SDO_USER_1\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 0,\n            \"netAmount\": 20,\n            \"taxAmount\": 4,\n            \"nominalCode\": \"5000\",\n            \"details\": \"Credit Test Line 1\",\n            \"transactionNumber\": 1266,\n            \"headerNumber\": 706,\n            \"accountRef\": \"NEWS\",\n            \"bankCode\": \"\",\n            \"bankFlag\": \"-\",\n            \"costCodeId\": 0,\n            \"date\": \"03/07/2024 00:00:00\",\n            \"dateEntered\": \"03/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"\",\n            \"foreignAmountPaid\": 0,\n            \"foreignGrossAmount\": 24,\n            \"foreignNetAmount\": 20,\n            \"foreignOutstanding\": -24,\n            \"foreignTaxAmount\": 4,\n            \"grossAmount\": 24,\n            \"invRef\": \"INV1234\",\n            \"outstanding\": -24,\n            \"paidFlag\": \"N\",\n            \"paidStatus\": \"*\",\n            \"payment\": 0,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"03/07/2024 16:17:20\",\n            \"recordModifyDate\": \"03/07/2024 16:17:20\",\n            \"splitNumber\": 1266,\n            \"stmtText\": \"Credit\",\n            \"taxCode\": \"T1\",\n            \"type\": \"PC\",\n            \"userName\": \"SDO_USER_1\",\n            \"vatFlag\": \"N\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 0,\n            \"netAmount\": -3000,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"1200\",\n            \"details\": \"Payment on account\",\n            \"transactionNumber\": 1267,\n            \"headerNumber\": 707,\n            \"accountRef\": \"SMOK0001\",\n            \"bankCode\": \"1200\",\n            \"bankFlag\": \"N\",\n            \"costCodeId\": 0,\n            \"date\": \"03/07/2024 00:00:00\",\n            \"dateEntered\": \"03/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"test ref\",\n            \"foreignAmountPaid\": 0,\n            \"foreignGrossAmount\": -3000,\n            \"foreignNetAmount\": -3000,\n            \"foreignOutstanding\": -3000,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": -3000,\n            \"invRef\": \"030724-1\",\n            \"outstanding\": -3000,\n            \"paidFlag\": \"N\",\n            \"paidStatus\": \"*\",\n            \"payment\": 3000,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"03/07/2024 16:38:38\",\n            \"recordModifyDate\": \"03/07/2024 16:40:13\",\n            \"splitNumber\": 1267,\n            \"stmtText\": \"Payment\",\n            \"taxCode\": \"T9\",\n            \"type\": \"SA\",\n            \"userName\": \"SDO_USER_1\",\n            \"vatFlag\": \"-\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        },\n        {\n            \"amountPaid\": 0,\n            \"netAmount\": -3000,\n            \"taxAmount\": 0,\n            \"nominalCode\": \"1200\",\n            \"details\": \"Payment on account\",\n            \"transactionNumber\": 1268,\n            \"headerNumber\": 708,\n            \"accountRef\": \"SMOK0001\",\n            \"bankCode\": \"1200\",\n            \"bankFlag\": \"N\",\n            \"costCodeId\": 0,\n            \"date\": \"03/07/2024 00:00:00\",\n            \"dateEntered\": \"03/07/2024 00:00:00\",\n            \"dateFlag\": 0,\n            \"deletedFlag\": 0,\n            \"deptName\": \"Default\",\n            \"deptNumber\": 0,\n            \"disputeCode\": 0,\n            \"disputed\": 0,\n            \"extraRef\": \"test ref\",\n            \"foreignAmountPaid\": 0,\n            \"foreignGrossAmount\": -3000,\n            \"foreignNetAmount\": -3000,\n            \"foreignOutstanding\": -3000,\n            \"foreignTaxAmount\": 0,\n            \"grossAmount\": -3000,\n            \"invRef\": \"030724-1\",\n            \"outstanding\": -3000,\n            \"paidFlag\": \"N\",\n            \"paidStatus\": \"*\",\n            \"payment\": 3000,\n            \"projectId\": 0,\n            \"recordCreateDate\": \"03/07/2024 16:40:13\",\n            \"recordModifyDate\": \"03/07/2024 16:40:13\",\n            \"splitNumber\": 1268,\n            \"stmtText\": \"Payment\",\n            \"taxCode\": \"T9\",\n            \"type\": \"SA\",\n            \"userName\": \"SDO_USER_1\",\n            \"vatFlag\": \"-\",\n            \"vatFlagCode\": 0,\n            \"vatReconciledDate\": \"\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"f265fdd5-1af3-44ef-a261-c999a074c27a"},{"name":"Search Audit Usage","id":"84694d3b-cb87-4e86-a0a4-b49187d0204b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"01/03/2024\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchUsage","description":"<h2 id=\"search-usage\">Search Usage</h2>\n<ul>\n<li><p>Description: Searches the AUDIT_USAGE table in Sage.</p>\n</li>\n<li><p>Endpoint URL: <code>api/searchUsage</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchUsage"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d6c24b6b-b64e-4da3-901b-115dfb650ebc","name":"Search Audit Usage","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"field\": \"DATE\",\r\n        \"type\": \"gte\",\r\n        \"value\": \"01/03/2024\"\r\n    }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchUsage"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 15:55:10 GMT"},{"key":"Content-Length","value":"17014"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 977,\n            \"splitNumber\": 1240,\n            \"splitiCrossRef\": \"1241\",\n            \"reference\": \"\",\n            \"details\": \"108.00 from SR 1241\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 108,\n            \"foreignAmount\": 108,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:10:12\",\n            \"recordModifyDate\": \"02/07/2024 16:10:13\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 978,\n            \"splitNumber\": 1241,\n            \"splitiCrossRef\": \"1240\",\n            \"reference\": \"87\",\n            \"details\": \"108.00 to SI 1240\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 108,\n            \"foreignAmount\": 108,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:10:12\",\n            \"recordModifyDate\": \"02/07/2024 16:10:12\"\n        },\n        {\n            \"type\": \"SC\",\n            \"usageNumber\": 979,\n            \"splitNumber\": 1240,\n            \"splitiCrossRef\": \"1242\",\n            \"reference\": \"\",\n            \"details\": \"12.00 from SC 1242\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 12,\n            \"foreignAmount\": 12,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:10:13\",\n            \"recordModifyDate\": \"02/07/2024 16:10:13\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 980,\n            \"splitNumber\": 1242,\n            \"splitiCrossRef\": \"1240\",\n            \"reference\": \"87\",\n            \"details\": \"12.00 to SI 1240\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 12,\n            \"foreignAmount\": 12,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:10:13\",\n            \"recordModifyDate\": \"02/07/2024 16:10:13\"\n        },\n        {\n            \"type\": \"SD\",\n            \"usageNumber\": 981,\n            \"splitNumber\": 1236,\n            \"splitiCrossRef\": \"1244\",\n            \"reference\": \"\",\n            \"details\": \"6.25 from SD 1244\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 6.25,\n            \"foreignAmount\": 6.25,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 982,\n            \"splitNumber\": 1244,\n            \"splitiCrossRef\": \"1236\",\n            \"reference\": \"85\",\n            \"details\": \"6.25 to SI 1236\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 6.25,\n            \"foreignAmount\": 6.25,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 983,\n            \"splitNumber\": 1235,\n            \"splitiCrossRef\": \"1243\",\n            \"reference\": \"\",\n            \"details\": \"108.00 from SR 1243\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 108,\n            \"foreignAmount\": 108,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 984,\n            \"splitNumber\": 1243,\n            \"splitiCrossRef\": \"1235\",\n            \"reference\": \"85\",\n            \"details\": \"108.00 to SI 1235\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 108,\n            \"foreignAmount\": 108,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 985,\n            \"splitNumber\": 1236,\n            \"splitiCrossRef\": \"1243\",\n            \"reference\": \"\",\n            \"details\": \"56.25 from SR 1243\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 56.25,\n            \"foreignAmount\": 56.25,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 986,\n            \"splitNumber\": 1243,\n            \"splitiCrossRef\": \"1236\",\n            \"reference\": \"85\",\n            \"details\": \"56.25 to SI 1236\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 56.25,\n            \"foreignAmount\": 56.25,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 987,\n            \"splitNumber\": 1237,\n            \"splitiCrossRef\": \"1243\",\n            \"reference\": \"\",\n            \"details\": \"121.50 from SR 1243\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 121.5,\n            \"foreignAmount\": 121.5,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 988,\n            \"splitNumber\": 1243,\n            \"splitiCrossRef\": \"1237\",\n            \"reference\": \"85\",\n            \"details\": \"121.50 to SI 1237\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 121.5,\n            \"foreignAmount\": 121.5,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\"\n        },\n        {\n            \"type\": \"SC\",\n            \"usageNumber\": 989,\n            \"splitNumber\": 1235,\n            \"splitiCrossRef\": \"1245\",\n            \"reference\": \"\",\n            \"details\": \"12.00 from SC 1245\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 12,\n            \"foreignAmount\": 12,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 990,\n            \"splitNumber\": 1245,\n            \"splitiCrossRef\": \"1235\",\n            \"reference\": \"85\",\n            \"details\": \"12.00 to SI 1235\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 12,\n            \"foreignAmount\": 12,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\"\n        },\n        {\n            \"type\": \"SC\",\n            \"usageNumber\": 991,\n            \"splitNumber\": 1237,\n            \"splitiCrossRef\": \"1245\",\n            \"reference\": \"\",\n            \"details\": \"13.50 from SC 1245\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 13.5,\n            \"foreignAmount\": 13.5,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 992,\n            \"splitNumber\": 1245,\n            \"splitiCrossRef\": \"1237\",\n            \"reference\": \"85\",\n            \"details\": \"13.50 to SI 1237\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 13.5,\n            \"foreignAmount\": 13.5,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:14:16\",\n            \"recordModifyDate\": \"02/07/2024 16:14:16\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 993,\n            \"splitNumber\": 424,\n            \"splitiCrossRef\": \"1246\",\n            \"reference\": \"\",\n            \"details\": \"200.93 from SR 1246\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 200.93,\n            \"foreignAmount\": 200.93,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:20:02\",\n            \"recordModifyDate\": \"02/07/2024 16:20:02\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 994,\n            \"splitNumber\": 1246,\n            \"splitiCrossRef\": \"424\",\n            \"reference\": \"22\",\n            \"details\": \"200.93 to SI 424\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 200.93,\n            \"foreignAmount\": 200.93,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:20:02\",\n            \"recordModifyDate\": \"02/07/2024 16:20:02\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 995,\n            \"splitNumber\": 425,\n            \"splitiCrossRef\": \"1246\",\n            \"reference\": \"\",\n            \"details\": \"148.05 from SR 1246\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 148.05,\n            \"foreignAmount\": 148.05,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:20:02\",\n            \"recordModifyDate\": \"02/07/2024 16:20:02\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 996,\n            \"splitNumber\": 1246,\n            \"splitiCrossRef\": \"425\",\n            \"reference\": \"22\",\n            \"details\": \"148.05 to SI 425\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 148.05,\n            \"foreignAmount\": 148.05,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:20:02\",\n            \"recordModifyDate\": \"02/07/2024 16:20:02\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 997,\n            \"splitNumber\": 427,\n            \"splitiCrossRef\": \"1246\",\n            \"reference\": \"\",\n            \"details\": \"251.02 from SR 1246\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 251.01999999999998,\n            \"foreignAmount\": 251.01999999999998,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:20:02\",\n            \"recordModifyDate\": \"02/07/2024 16:20:02\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 998,\n            \"splitNumber\": 1246,\n            \"splitiCrossRef\": \"427\",\n            \"reference\": \"22\",\n            \"details\": \"251.02 to SI 427\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 251.01999999999998,\n            \"foreignAmount\": 251.01999999999998,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:20:02\",\n            \"recordModifyDate\": \"02/07/2024 16:20:02\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 999,\n            \"splitNumber\": 1238,\n            \"splitiCrossRef\": \"1247\",\n            \"reference\": \"\",\n            \"details\": \"517.44 from SR 1247\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 517.43999999999994,\n            \"foreignAmount\": 517.43999999999994,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:23:34\",\n            \"recordModifyDate\": \"02/07/2024 16:23:34\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1000,\n            \"splitNumber\": 1247,\n            \"splitiCrossRef\": \"1238\",\n            \"reference\": \"86\",\n            \"details\": \"517.44 to SI 1238\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 517.43999999999994,\n            \"foreignAmount\": 517.43999999999994,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:23:34\",\n            \"recordModifyDate\": \"02/07/2024 16:23:34\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 1001,\n            \"splitNumber\": 1239,\n            \"splitiCrossRef\": \"1247\",\n            \"reference\": \"\",\n            \"details\": \"11.76 from SR 1247\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 11.76,\n            \"foreignAmount\": 11.76,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:23:34\",\n            \"recordModifyDate\": \"02/07/2024 16:23:34\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1002,\n            \"splitNumber\": 1247,\n            \"splitiCrossRef\": \"1239\",\n            \"reference\": \"86\",\n            \"details\": \"11.76 to SI 1239\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 11.76,\n            \"foreignAmount\": 11.76,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:23:34\",\n            \"recordModifyDate\": \"02/07/2024 16:23:34\"\n        },\n        {\n            \"type\": \"SD\",\n            \"usageNumber\": 1003,\n            \"splitNumber\": 1249,\n            \"splitiCrossRef\": \"1251\",\n            \"reference\": \"CLTEST\",\n            \"details\": \"10.00 from SD 1251\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 10,\n            \"foreignAmount\": 10,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1004,\n            \"splitNumber\": 1251,\n            \"splitiCrossRef\": \"1249\",\n            \"reference\": \"88\",\n            \"details\": \"10.00 to SI 1249\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 10,\n            \"foreignAmount\": 10,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 1005,\n            \"splitNumber\": 1248,\n            \"splitiCrossRef\": \"1250\",\n            \"reference\": \"CLTEST\",\n            \"details\": \"108.00 from SR 1250\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 108,\n            \"foreignAmount\": 108,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1006,\n            \"splitNumber\": 1250,\n            \"splitiCrossRef\": \"1248\",\n            \"reference\": \"88\",\n            \"details\": \"108.00 to SI 1248\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 108,\n            \"foreignAmount\": 108,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 1007,\n            \"splitNumber\": 1249,\n            \"splitiCrossRef\": \"1250\",\n            \"reference\": \"CLTEST\",\n            \"details\": \"90.00 from SR 1250\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 90,\n            \"foreignAmount\": 90,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1008,\n            \"splitNumber\": 1250,\n            \"splitiCrossRef\": \"1249\",\n            \"reference\": \"88\",\n            \"details\": \"90.00 to SI 1249\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 90,\n            \"foreignAmount\": 90,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\"\n        },\n        {\n            \"type\": \"SC\",\n            \"usageNumber\": 1009,\n            \"splitNumber\": 1248,\n            \"splitiCrossRef\": \"1252\",\n            \"reference\": \"CLTEST\",\n            \"details\": \"12.00 from SC 1252\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 12,\n            \"foreignAmount\": 12,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1010,\n            \"splitNumber\": 1252,\n            \"splitiCrossRef\": \"1248\",\n            \"reference\": \"88\",\n            \"details\": \"12.00 to SI 1248\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 12,\n            \"foreignAmount\": 12,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:31:32\",\n            \"recordModifyDate\": \"02/07/2024 16:31:32\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 1011,\n            \"splitNumber\": 1253,\n            \"splitiCrossRef\": \"1255\",\n            \"reference\": \"\",\n            \"details\": \"120.00 from SR 1255\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 120,\n            \"foreignAmount\": 120,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:35:40\",\n            \"recordModifyDate\": \"02/07/2024 16:35:40\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1012,\n            \"splitNumber\": 1255,\n            \"splitiCrossRef\": \"1253\",\n            \"reference\": \"89\",\n            \"details\": \"120.00 to SI 1253\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 120,\n            \"foreignAmount\": 120,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:35:40\",\n            \"recordModifyDate\": \"02/07/2024 16:35:40\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 1013,\n            \"splitNumber\": 1254,\n            \"splitiCrossRef\": \"1255\",\n            \"reference\": \"\",\n            \"details\": \"100.00 from SR 1255\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 100,\n            \"foreignAmount\": 100,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:35:40\",\n            \"recordModifyDate\": \"02/07/2024 16:35:40\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1014,\n            \"splitNumber\": 1255,\n            \"splitiCrossRef\": \"1254\",\n            \"reference\": \"90\",\n            \"details\": \"100.00 to SI 1254\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 100,\n            \"foreignAmount\": 100,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:35:40\",\n            \"recordModifyDate\": \"02/07/2024 16:35:40\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 1015,\n            \"splitNumber\": 1256,\n            \"splitiCrossRef\": \"1259\",\n            \"reference\": \"\",\n            \"details\": \"120.00 from SR 1259\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 120,\n            \"foreignAmount\": 120,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:41:28\",\n            \"recordModifyDate\": \"02/07/2024 16:41:28\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1016,\n            \"splitNumber\": 1259,\n            \"splitiCrossRef\": \"1256\",\n            \"reference\": \"91\",\n            \"details\": \"120.00 to SI 1256\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 120,\n            \"foreignAmount\": 120,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:41:28\",\n            \"recordModifyDate\": \"02/07/2024 16:41:28\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 1017,\n            \"splitNumber\": 1257,\n            \"splitiCrossRef\": \"1259\",\n            \"reference\": \"\",\n            \"details\": \"100.00 from SR 1259\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 100,\n            \"foreignAmount\": 100,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:41:28\",\n            \"recordModifyDate\": \"02/07/2024 16:41:28\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1018,\n            \"splitNumber\": 1259,\n            \"splitiCrossRef\": \"1257\",\n            \"reference\": \"91\",\n            \"details\": \"100.00 to SI 1257\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 100,\n            \"foreignAmount\": 100,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:41:28\",\n            \"recordModifyDate\": \"02/07/2024 16:41:28\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 1019,\n            \"splitNumber\": 1258,\n            \"splitiCrossRef\": \"1259\",\n            \"reference\": \"\",\n            \"details\": \"120.00 from SR 1259\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 120,\n            \"foreignAmount\": 120,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:41:28\",\n            \"recordModifyDate\": \"02/07/2024 16:41:28\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1020,\n            \"splitNumber\": 1259,\n            \"splitiCrossRef\": \"1258\",\n            \"reference\": \"91\",\n            \"details\": \"120.00 to SI 1258\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 120,\n            \"foreignAmount\": 120,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:41:28\",\n            \"recordModifyDate\": \"02/07/2024 16:41:28\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 1021,\n            \"splitNumber\": 1260,\n            \"splitiCrossRef\": \"1262\",\n            \"reference\": \"\",\n            \"details\": \"216.00 from SR 1262\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 216,\n            \"foreignAmount\": 216,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1022,\n            \"splitNumber\": 1262,\n            \"splitiCrossRef\": \"1260\",\n            \"reference\": \"92\",\n            \"details\": \"216.00 to SI 1260\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 216,\n            \"foreignAmount\": 216,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\"\n        },\n        {\n            \"type\": \"SR\",\n            \"usageNumber\": 1023,\n            \"splitNumber\": 1261,\n            \"splitiCrossRef\": \"1262\",\n            \"reference\": \"\",\n            \"details\": \"54.00 from SR 1262\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 54,\n            \"foreignAmount\": 54,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1024,\n            \"splitNumber\": 1262,\n            \"splitiCrossRef\": \"1261\",\n            \"reference\": \"93\",\n            \"details\": \"54.00 to SI 1261\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 54,\n            \"foreignAmount\": 54,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\"\n        },\n        {\n            \"type\": \"SC\",\n            \"usageNumber\": 1025,\n            \"splitNumber\": 1261,\n            \"splitiCrossRef\": \"1263\",\n            \"reference\": \"\",\n            \"details\": \"6.00 from SC 1263\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 6,\n            \"foreignAmount\": 6,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1026,\n            \"splitNumber\": 1263,\n            \"splitiCrossRef\": \"1261\",\n            \"reference\": \"93\",\n            \"details\": \"6.00 to SI 1261\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 6,\n            \"foreignAmount\": 6,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\"\n        },\n        {\n            \"type\": \"SC\",\n            \"usageNumber\": 1027,\n            \"splitNumber\": 1260,\n            \"splitiCrossRef\": \"1264\",\n            \"reference\": \"\",\n            \"details\": \"24.00 from SC 1264\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 24,\n            \"foreignAmount\": 24,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\"\n        },\n        {\n            \"type\": \"SI\",\n            \"usageNumber\": 1028,\n            \"splitNumber\": 1264,\n            \"splitiCrossRef\": \"1260\",\n            \"reference\": \"92\",\n            \"details\": \"24.00 to SI 1260\",\n            \"username\": \"MANAGER\",\n            \"date\": \"02/07/2024 00:00:00\",\n            \"amount\": 24,\n            \"foreignAmount\": 24,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"02/07/2024 16:43:07\",\n            \"recordModifyDate\": \"02/07/2024 16:43:07\"\n        },\n        {\n            \"type\": \"PI\",\n            \"usageNumber\": 1029,\n            \"splitNumber\": 1265,\n            \"splitiCrossRef\": \"1265\",\n            \"reference\": \"INV1234\",\n            \"details\": \"10.00 to PI 1265\",\n            \"username\": \"SDO_USER_1\",\n            \"date\": \"03/07/2024 00:00:00\",\n            \"amount\": 10,\n            \"foreignAmount\": 10,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"03/07/2024 16:42:55\",\n            \"recordModifyDate\": \"03/07/2024 16:42:55\"\n        },\n        {\n            \"type\": \"PI\",\n            \"usageNumber\": 1030,\n            \"splitNumber\": 1265,\n            \"splitiCrossRef\": \"1265\",\n            \"reference\": \"INV1234\",\n            \"details\": \"10.00 to PI 1265\",\n            \"username\": \"SDO_USER_1\",\n            \"date\": \"03/07/2024 00:00:00\",\n            \"amount\": 10,\n            \"foreignAmount\": 10,\n            \"deletedFlag\": false,\n            \"recordCreatedDate\": \"03/07/2024 16:42:55\",\n            \"recordModifyDate\": \"03/07/2024 16:42:55\"\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"84694d3b-cb87-4e86-a0a4-b49187d0204b"},{"name":"Create Bank Tx","id":"18b143b5-54ed-46ea-b401-a793a6c448da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"bankCode\": \"1220\",\n\t\"netAmount\": 300,\n\t\"taxAmount\": 0,\n\t\"taxCode\": 9,\n\t\"details\": \"Bch. No. - B00007314 Ag - C00543\",\n\t\"date\": \"03/07/2024\",\n\t\"nominalCode\": 4000,\n\t\"invRef\": \"Internet Banking Payment\",\n\t\"type\": 11\n}"},"url":"{{url}}/api/bank","description":"<h1 id=\"post-bank-entry\">Post Bank Entry</h1>\n<ul>\n<li><p>Description: Posts a record to the bank account</p>\n</li>\n<li><p>Endpoint URL: <code>api/bank</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">bankCode // string, required, max 8 chars\nnetAmount // double, required, max 8 chars\ntaxAmount // double, required, max 8 chars\ntaxCode // int, required max 4 chars\nnominalCode // string, required, max 4 chars\ninvRef // string, optional, max 30 chars\ndate // date, string, dd/mm/yyyy\ndetails // string, optional, max 60 chars\ntype // int, BP = 11, BR = 12\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","bank"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f07f1ad7-9e7e-4245-a57d-74bff79dff32","name":"Create Bank Tx","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\n\t\"bankCode\": \"1220\",\n\t\"netAmount\": 300,\n\t\"taxAmount\": 0,\n\t\"taxCode\": 9,\n\t\"details\": \"Bch. No. - B00007314 Ag - C00543\",\n\t\"date\": \"03/07/2024\",\n\t\"nominalCode\": 4000,\n\t\"invRef\": \"Internet Banking Payment\",\n\t\"type\": 11\n}"},"url":"{{url}}/api/bank"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 16:03:29 GMT"},{"key":"Content-Length","value":"84"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 0,\n    \"message\": \"Transaction Posted Successfully\"\n}"}],"_postman_id":"18b143b5-54ed-46ea-b401-a793a6c448da"},{"name":"Create Journal Tx","id":"84a0456a-6a7e-4192-8ec7-88f5150eb2e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"date\": \"03/07/2024\",\n    \"invRef\": \"78522\",\n    \"accountRef\": \"SMOK0001\",\n    \"splits\": [\n        {\n            \"details\": \"Test Debit\",\n            \"netAmount\": 2000.00,\n            \"taxAmount\": 0,\n            \"taxCode\": 0,\n            \"type\": 15,\n            \"nominalCode\": \"1210\",\n            \"deptNumber\": \"2\",\n            \"extraRef\": \"ex ref test 1\"\n        },\n        {\n            \"details\": \"Test Credit\",\n            \"netAmount\": 2000.00,\n            \"taxAmount\": 0,\n            \"taxCode\": 0,\n            \"type\": 16,\n            \"nominalCode\": \"1200\",\n            \"deptNumber\": \"2\",\n            \"extraRef\": \"ex ref test 1\"\n        }\n    ]\n}"},"url":"{{url}}/api/journal","description":"<h1 id=\"post-journal-entry\">Post Journal Entry</h1>\n<ul>\n<li><p>Description: Posts journal entries</p>\n</li>\n<li><p>Endpoint URL: <code>api/journal</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">date // date, string, dd,mm,yyyy\ninvRef // string, optional, max 30 chars\nsplits // array\n    details // string, optional, max 30 chars\n    taxAmount // double, required, max 8 chars\n    netAmount // double, required, max 8 chars\n    taxCode // double, max 8 chars\n    nominalCode // string, max 8 chars\n    type // int, JC = 16, JD = 15\n    deptNumber // string, optional, maximum 2 chars\n    extraRef // string, optional, maximum 30 chars\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","journal"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"084dbfce-c942-44e8-945d-b20a9143f912","name":"Create Journal Tx","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"date\": \"03/07/2024\",\n    \"invRef\": \"78522\",\n    \"accountRef\": \"SMOK0001\",\n    \"splits\": [\n        {\n            \"details\": \"Test Debit\",\n            \"netAmount\": 2000.00,\n            \"taxAmount\": 0,\n            \"taxCode\": 0,\n            \"type\": 15,\n            \"nominalCode\": \"1210\",\n            \"deptNumber\": \"2\",\n            \"extraRef\": \"ex ref test 1\"\n        },\n        {\n            \"details\": \"Test Credit\",\n            \"netAmount\": 2000.00,\n            \"taxAmount\": 0,\n            \"taxCode\": 0,\n            \"type\": 16,\n            \"nominalCode\": \"1200\",\n            \"deptNumber\": \"2\",\n            \"extraRef\": \"ex ref test 1\"\n        }\n    ]\n}"},"url":"{{url}}/api/journal"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 03 Jul 2024 16:04:57 GMT"},{"key":"Content-Length","value":"87"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": 0,\n    \"message\": \"Journal entried posted succesfully\"\n}"}],"_postman_id":"84a0456a-6a7e-4192-8ec7-88f5150eb2e3"}],"id":"ce1db57e-f301-4713-bd5a-66c64a29cf76","_postman_id":"ce1db57e-f301-4713-bd5a-66c64a29cf76","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}},{"name":"Fixed Assets","item":[{"name":"Create Fixed Assets","id":"ff108a04-5024-45c1-9aae-1e9de245e044","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"assetRef\": \"HYPE\",\r\n    \"details1\": \"1\",\r\n    \"details2\": \"2\",\r\n    \"details3\": \"3\",\r\n    \"employee\": \"Hyperext\",\r\n    \"balSheetNomCode\": \"0051\",\r\n    \"profitLossNomCode\": \"8003\",\r\n    \"depMethodCode\": 1,\r\n    \"depRate\": 8.0,\r\n    \"deptNumber\": 5,\r\n    \"assetCat\": 1,\r\n    \"purchaseDate\": \"01/01/2006\",\r\n    \"costPrice\": 16500.0,\r\n    \"depLast\": 110.0,\r\n    \"depToDate\": 1210.0,\r\n    \"netBook\": 15290.0\r\n}"},"url":"{{url}}/api/fixedAssets","description":"<h2 id=\"post-fixed-assets\">POST Fixed Assets</h2>\n<ul>\n<li><p>Endpoint: <code>api/fixedAssets</code></p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n<li><p>Description: Allows you to post fixed assets directly into sage</p>\n</li>\n<li><p>parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">assetRef // Required, String max 8 chars\ndetails1 // Optional, String, max 60 chars\ndetails2 // Optional,String, max 60 chars\ndetails3 // Optional, String, max 60 chars\nemployee // Optional, String max 15 chars\nserialNumber // Optional, String max 60 chars\npurchaseRef // Optional, String max 8 chars\nbalSheetNomCode // Required, String max 8 chars\nprofitLossNomCode // Required, String max 8 chars\ndepMethodCode // Optional, Int max 2 chars\ndepRate // Optional, Double max 8 chars\ndeptNumber // Optional, Int max 2 chars\nassetCat // Optional, Int max 2 chars\npurchaseDate // Optional, String max 2 chars\ncostPrice // Optional, Double max 8 chars\ndepLast // Optional, Double max 8 chars\ndepToDate // Optional, Double max 8 chars\nnetBook // Optional, Double max 8 chars\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","fixedAssets"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"26b57df4-e683-4fe4-8023-e044b4bf2081","name":"Create Fixed Assets","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"assetRef\": \"HYPE\",\r\n    \"details1\": \"1\",\r\n    \"details2\": \"2\",\r\n    \"details3\": \"3\",\r\n    \"employee\": \"Hyperext\",\r\n    \"balSheetNomCode\": \"0051\",\r\n    \"profitLossNomCode\": \"8003\",\r\n    \"depMethodCode\": 1,\r\n    \"depRate\": 8.0,\r\n    \"deptNumber\": 5,\r\n    \"assetCat\": 1,\r\n    \"purchaseDate\": \"01/01/2006\",\r\n    \"costPrice\": 16500.0,\r\n    \"depLast\": 110.0,\r\n    \"depToDate\": 1210.0,\r\n    \"netBook\": 15290.0\r\n}"},"url":"{{url}}/api/fixedAssets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 04 Jul 2024 08:55:04 GMT"},{"key":"Content-Length","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": \"HYPE\",\n    \"message\": null\n}"}],"_postman_id":"ff108a04-5024-45c1-9aae-1e9de245e044"},{"name":"Search Fixed Assets","id":"52ff3ae5-16a8-49aa-87be-1f619960a904","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"field\": \"RECORD_MODIFY_DATE\",\r\n    \"type\": \"gte\",\r\n    \"value\": \"01/03/2023\"\r\n  }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchfixedAsset","description":"<ul>\n<li><p>Description: Searches Fixed Assets</p>\n</li>\n<li><p>Endpoint URL: `api/searchfixedAssets</p>\n</li>\n<li><p>Method: <code>POST</code></p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","searchfixedAsset"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"0f528bec-3d96-4b9b-85ef-06135c27a1fb","name":"Search Fixed Assets","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"field\": \"RECORD_MODIFY_DATE\",\r\n    \"type\": \"gte\",\r\n    \"value\": \"01/03/2023\"\r\n  }\r\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/searchfixedAsset"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 04 Jul 2024 08:56:38 GMT"},{"key":"Content-Length","value":"493"}],"cookie":[],"responseTime":null,"body":"{\n    \"results\": [\n        {\n            \"recordCreateDate\": \"04/07/2024\",\n            \"recordModifyDate\": \"04/07/2024\",\n            \"salesPurchaseRef\": null,\n            \"assetRef\": \"HYPE\",\n            \"details1\": \"1\",\n            \"details2\": \"2\",\n            \"details3\": \"3\",\n            \"employee\": \"Hyperext\",\n            \"serialNumber\": \"\",\n            \"purchaseRef\": \"\",\n            \"balSheetNomCode\": \"0051\",\n            \"profitLossNomCode\": \"8003\",\n            \"depMethodCode\": 1,\n            \"depRate\": 8,\n            \"deptNumber\": 5,\n            \"assetCat\": 1,\n            \"purchaseDate\": \"01/01/2006\",\n            \"costPrice\": 16500,\n            \"depLast\": 110,\n            \"depToDate\": 1210,\n            \"netBook\": 15290\n        }\n    ],\n    \"success\": true,\n    \"code\": 200,\n    \"response\": null,\n    \"message\": null\n}"}],"_postman_id":"52ff3ae5-16a8-49aa-87be-1f619960a904"},{"name":"Read Search Assets","id":"f578a826-c392-4078-bc3a-ac18db729104","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/fixedAssets/HYPE","description":"<h2 id=\"fixed-assets\">Fixed Assets</h2>\n<ul>\n<li><p>Description: Fetches fixed asset details, search by asset ref</p>\n</li>\n<li><p>Endpoint URL <code>api/fixedAssets/{id}</code></p>\n</li>\n<li><p>method <code>GET</code></p>\n</li>\n<li><p>Parameters: id</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","fixedAssets","HYPE"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5312afab-de46-44fd-b94f-503ade15358d","name":"Read Search Assets","originalRequest":{"method":"GET","header":[{"key":"company","value":"{{company}}","type":"text","disabled":true}],"url":"{{url}}/api/fixedAssets/HYPE"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 04 Jul 2024 08:57:21 GMT"},{"key":"Content-Length","value":"388"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": {\n        \"assetRef\": \"HYPE\",\n        \"details1\": \"1\",\n        \"details2\": \"2\",\n        \"details3\": \"3\",\n        \"employee\": \"Hyperext\",\n        \"serialNumber\": \"\",\n        \"purchaseRef\": \"\",\n        \"balSheetNomCode\": \"0051\",\n        \"profitLossNomCode\": \"8003\",\n        \"depMethodCode\": 1,\n        \"depRate\": 8,\n        \"deptNumber\": 5,\n        \"assetCat\": 1,\n        \"purchaseDate\": \"01/01/2006\",\n        \"costPrice\": 16500,\n        \"depLast\": 110,\n        \"depToDate\": 1210,\n        \"netBook\": 15290\n    },\n    \"message\": null\n}"}],"_postman_id":"f578a826-c392-4078-bc3a-ac18db729104"},{"name":"Update Fixed Assets","id":"e9f02ee9-c8d6-4f51-8ad2-2395cac3311e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"assetRef\": \"HYPE\",\r\n    \"details1\": \"asd123\",\r\n    \"details2\": \"\",\r\n    \"details3\": \"\",\r\n    \"employee\": \"Garage\",\r\n    \"serialNumber\": \"K562FTF\",\r\n    \"purchaseRef\": \"QUA001\",\r\n    \"balSheetNomCode\": \"0051\",\r\n    \"profitLossNomCode\": \"8003\",\r\n    \"depMethodCode\": 1,\r\n    \"depRate\": 8.0,\r\n    \"deptNumber\": 5,\r\n    \"assetCat\": 1,\r\n    \"purchaseDate\": \"01/01/2006\",\r\n    \"costPrice\": 16500.0,\r\n    \"depLast\": 110.0,\r\n    \"depToDate\": 1210.0,\r\n    \"netBook\": 15290.0\r\n}"},"url":"{{url}}/api/fixedAssets","description":"<h2 id=\"patch-fixed-asset\">PATCH Fixed Asset</h2>\n<ul>\n<li><p>Description: Updates Fixed Asset</p>\n</li>\n<li><p>Endpoint URL: <code>api/fixedAssets</code></p>\n</li>\n<li><p>Method: <code>PATCH</code></p>\n</li>\n<li><p>Parameters:</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">assetRef // Required, String max 8 chars\ndetails1 // Optional, String, max 60 chars\ndetails2 // Optional,String, max 60 chars\ndetails3 // Optional, String, max 60 chars\nemployee // Optional, String max 15 chars\nserialNumber // Optional, String max 60 chars\npurchaseRef // Optional, String max 8 chars\nbalSheetNomCode // Required, String max 8 chars\nprofitLossNomCode // Required, String max 8 chars\ndepMethodCode // Optional, Int max 2 chars\ndepRate // Optional, Double max 8 chars\ndeptNumber // Optional, Int max 2 chars\nassetCat // Optional, Int max 2 chars\npurchaseDate // Optional, String max 2 chars\ncostPrice // Optional, Double max 8 chars\ndepLast // Optional, Double max 8 chars\ndepToDate // Optional, Double max 8 chars\nnetBook // Optional, Double max 8 chars\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}},"urlObject":{"path":["api","fixedAssets"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9afc5549-0aa9-4615-91d6-679e5debd642","name":"Update Fixed Assets","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"company","value":"{{company}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\r\n    \"assetRef\": \"HYPE\",\r\n    \"details1\": \"asd123\",\r\n    \"details2\": \"\",\r\n    \"details3\": \"\",\r\n    \"employee\": \"Garage\",\r\n    \"serialNumber\": \"K562FTF\",\r\n    \"purchaseRef\": \"QUA001\",\r\n    \"balSheetNomCode\": \"0051\",\r\n    \"profitLossNomCode\": \"8003\",\r\n    \"depMethodCode\": 1,\r\n    \"depRate\": 8.0,\r\n    \"deptNumber\": 5,\r\n    \"assetCat\": 1,\r\n    \"purchaseDate\": \"01/01/2006\",\r\n    \"costPrice\": 16500.0,\r\n    \"depLast\": 110.0,\r\n    \"depToDate\": 1210.0,\r\n    \"netBook\": 15290.0\r\n}"},"url":"{{url}}/api/fixedAssets"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Thu, 04 Jul 2024 08:58:33 GMT"},{"key":"Content-Length","value":"60"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"code\": 200,\n    \"response\": \"HYPE\",\n    \"message\": null\n}"}],"_postman_id":"e9f02ee9-c8d6-4f51-8ad2-2395cac3311e"}],"id":"42645ef9-c614-4339-b5fe-79b64b5268fd","_postman_id":"42645ef9-c614-4339-b5fe-79b64b5268fd","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]},"isInherited":true,"source":{"_postman_id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","id":"07b36e89-6fe2-4208-9ae8-a85041b2ded0","name":"HyperAccounts REST API for Sage 50 Accounts (desktop)","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"AuthToken"},{"key":"value","value":"{{token}}"}]}},"event":[{"listen":"prerequest","script":{"id":"161146e0-6a81-4c45-809a-dcf0adaa498d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"25423e55-df29-40cd-9577-fb00413b2e01","type":"text/javascript","exec":[""]}}]}