xero_gateway 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. data/CHANGELOG.textile +51 -0
  2. data/LICENSE +14 -0
  3. data/README.textile +289 -0
  4. data/Rakefile +14 -0
  5. data/examples/oauth.rb +25 -0
  6. data/init.rb +1 -0
  7. data/lib/xero_gateway/account.rb +78 -0
  8. data/lib/xero_gateway/accounts_list.rb +77 -0
  9. data/lib/xero_gateway/address.rb +97 -0
  10. data/lib/xero_gateway/ca-certificates.crt +2560 -0
  11. data/lib/xero_gateway/contact.rb +206 -0
  12. data/lib/xero_gateway/currency.rb +56 -0
  13. data/lib/xero_gateway/dates.rb +25 -0
  14. data/lib/xero_gateway/error.rb +18 -0
  15. data/lib/xero_gateway/exceptions.rb +41 -0
  16. data/lib/xero_gateway/gateway.rb +363 -0
  17. data/lib/xero_gateway/http.rb +128 -0
  18. data/lib/xero_gateway/http_encoding_helper.rb +49 -0
  19. data/lib/xero_gateway/invoice.rb +278 -0
  20. data/lib/xero_gateway/line_item.rb +123 -0
  21. data/lib/xero_gateway/money.rb +16 -0
  22. data/lib/xero_gateway/oauth.rb +56 -0
  23. data/lib/xero_gateway/organisation.rb +61 -0
  24. data/lib/xero_gateway/payment.rb +40 -0
  25. data/lib/xero_gateway/phone.rb +77 -0
  26. data/lib/xero_gateway/private_app.rb +17 -0
  27. data/lib/xero_gateway/response.rb +37 -0
  28. data/lib/xero_gateway/tax_rate.rb +63 -0
  29. data/lib/xero_gateway/tracking_category.rb +62 -0
  30. data/lib/xero_gateway.rb +33 -0
  31. data/test/integration/accounts_list_test.rb +109 -0
  32. data/test/integration/create_contact_test.rb +66 -0
  33. data/test/integration/create_invoice_test.rb +49 -0
  34. data/test/integration/get_accounts_test.rb +23 -0
  35. data/test/integration/get_contact_test.rb +28 -0
  36. data/test/integration/get_contacts_test.rb +40 -0
  37. data/test/integration/get_currencies_test.rb +25 -0
  38. data/test/integration/get_invoice_test.rb +48 -0
  39. data/test/integration/get_invoices_test.rb +90 -0
  40. data/test/integration/get_organisation_test.rb +24 -0
  41. data/test/integration/get_tax_rates_test.rb +25 -0
  42. data/test/integration/get_tracking_categories_test.rb +26 -0
  43. data/test/integration/update_contact_test.rb +31 -0
  44. data/test/stub_responses/accounts.xml +1 -0
  45. data/test/stub_responses/api_exception.xml +153 -0
  46. data/test/stub_responses/contact.xml +1 -0
  47. data/test/stub_responses/contacts.xml +2189 -0
  48. data/test/stub_responses/create_invoice.xml +64 -0
  49. data/test/stub_responses/currencies.xml +16 -0
  50. data/test/stub_responses/invalid_api_key_error.xml +1 -0
  51. data/test/stub_responses/invalid_consumer_key +1 -0
  52. data/test/stub_responses/invalid_request_token +1 -0
  53. data/test/stub_responses/invoice.xml +1 -0
  54. data/test/stub_responses/invoice_not_found_error.xml +1 -0
  55. data/test/stub_responses/invoices.xml +1 -0
  56. data/test/stub_responses/organisation.xml +14 -0
  57. data/test/stub_responses/tax_rates.xml +52 -0
  58. data/test/stub_responses/token_expired +1 -0
  59. data/test/stub_responses/tracking_categories.xml +1 -0
  60. data/test/stub_responses/unknown_error.xml +1 -0
  61. data/test/test_helper.rb +81 -0
  62. data/test/unit/account_test.rb +34 -0
  63. data/test/unit/contact_test.rb +97 -0
  64. data/test/unit/currency_test.rb +31 -0
  65. data/test/unit/gateway_test.rb +79 -0
  66. data/test/unit/invoice_test.rb +302 -0
  67. data/test/unit/oauth_test.rb +110 -0
  68. data/test/unit/organisation_test.rb +34 -0
  69. data/test/unit/tax_rate_test.rb +38 -0
  70. data/test/unit/tracking_category_test.rb +30 -0
  71. data/test/xsd/README +2 -0
  72. data/test/xsd/create_contact.xsd +61 -0
  73. data/test/xsd/create_invoice.xsd +107 -0
  74. data/xero_gateway.gemspec +87 -0
  75. metadata +172 -0
@@ -0,0 +1,48 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+
3
+ class GetInvoiceTest < Test::Unit::TestCase
4
+ include TestHelper
5
+
6
+ def setup
7
+ @gateway = XeroGateway::Gateway.new(CONSUMER_KEY, CONSUMER_SECRET)
8
+
9
+ if STUB_XERO_CALLS
10
+ @gateway.xero_url = "DUMMY_URL"
11
+
12
+ @gateway.stubs(:http_get).with {|client, url, params| url =~ /Invoices(\/[0-9a-z\-]+)?$/i }.returns(get_file_as_string("invoice.xml"))
13
+ @gateway.stubs(:http_put).with {|client, url, body, params| url =~ /Invoices$/ }.returns(get_file_as_string("create_invoice.xml"))
14
+ end
15
+ end
16
+
17
+ def test_get_invoice
18
+ # Make sure there is an invoice in Xero to retrieve
19
+ invoice = @gateway.create_invoice(dummy_invoice).invoice
20
+
21
+ result = @gateway.get_invoice(invoice.invoice_id)
22
+ assert result.success?
23
+ assert !result.request_params.nil?
24
+ assert !result.response_xml.nil?
25
+ assert_equal result.invoice.invoice_number, invoice.invoice_number
26
+
27
+ result = @gateway.get_invoice(invoice.invoice_number)
28
+ assert result.success?
29
+ assert !result.request_params.nil?
30
+ assert !result.response_xml.nil?
31
+ assert_equal result.invoice.invoice_id, invoice.invoice_id
32
+ end
33
+
34
+ def test_line_items_downloaded_set_correctly
35
+ # Make sure there is an invoice in Xero to retrieve.
36
+ example_invoice = @gateway.create_invoice(dummy_invoice).invoice
37
+
38
+ # No line items.
39
+ response = @gateway.get_invoice(example_invoice.invoice_id)
40
+ assert_equal(true, response.success?)
41
+
42
+ invoice = response.invoice
43
+ assert_kind_of(XeroGateway::LineItem, invoice.line_items.first)
44
+ assert_kind_of(XeroGateway::Invoice, invoice)
45
+ assert_equal(true, invoice.line_items_downloaded?)
46
+ end
47
+
48
+ end
@@ -0,0 +1,90 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+
3
+ class GetInvoicesTest < Test::Unit::TestCase
4
+ include TestHelper
5
+
6
+ INVALID_INVOICE_ID = "99999999-9999-9999-9999-999999999999" unless defined?(INVALID_INVOICE_ID)
7
+
8
+ def setup
9
+ @gateway = XeroGateway::Gateway.new(CONSUMER_KEY, CONSUMER_SECRET)
10
+
11
+ if STUB_XERO_CALLS
12
+ @gateway.xero_url = "DUMMY_URL"
13
+
14
+ @gateway.stubs(:http_get).with {|client, url, params| url =~ /Invoices/ }.returns(get_file_as_string("invoices.xml"))
15
+ @gateway.stubs(:http_put).with {|client, url, body, params| url =~ /Invoices$/ }.returns(get_file_as_string("create_invoice.xml"))
16
+
17
+ # Get an invoice with an invalid ID number.
18
+ @gateway.stubs(:http_get).with {|client, url, params| url =~ Regexp.new("Invoices/#{INVALID_INVOICE_ID}") }.returns(get_file_as_string("invoice_not_found_error.xml"))
19
+ end
20
+ end
21
+
22
+ def test_get_invoices
23
+ # Make sure there is an invoice in Xero to retrieve
24
+ invoice = @gateway.create_invoice(dummy_invoice).invoice
25
+
26
+ result = @gateway.get_invoices
27
+ assert result.success?
28
+ assert !result.request_params.nil?
29
+ assert !result.response_xml.nil?
30
+ assert result.invoices.collect {|i| i.invoice_number}.include?(invoice.invoice_number)
31
+ end
32
+
33
+ def test_get_invoices_with_modified_since_date
34
+ # Create a test invoice
35
+ invoice = dummy_invoice
36
+ @gateway.create_invoice(invoice)
37
+
38
+ # Check that it is returned
39
+ result = @gateway.get_invoices(:modified_since => Date.today - 1)
40
+ assert result.success?
41
+ assert !result.request_params.nil?
42
+ assert !result.response_xml.nil?
43
+ assert result.request_params.keys.include?(:ModifiedAfter) # make sure the flag was sent
44
+ assert result.invoices.collect {|response_invoice| response_invoice.invoice_number}.include?(invoice.invoice_number)
45
+ end
46
+
47
+ def test_line_items_downloaded_set_correctly
48
+ # No line items.
49
+ response = @gateway.get_invoices
50
+ assert_equal(true, response.success?)
51
+
52
+ invoice = response.invoices.first
53
+ assert_kind_of(XeroGateway::Invoice, invoice)
54
+ assert_equal(false, invoice.line_items_downloaded?)
55
+ end
56
+
57
+ # Make sure that a reference to gateway is passed when the get_invoices response is parsed.
58
+ def test_get_contacts_gateway_reference
59
+ result = @gateway.get_invoices
60
+ assert(result.success?)
61
+ assert_not_equal(0, result.invoices.size)
62
+
63
+ result.invoices.each do | invoice |
64
+ assert(invoice.gateway === @gateway)
65
+ end
66
+ end
67
+
68
+ # Test to make sure that we correctly error when an invoice doesn't have an ID.
69
+ # This should usually never be ecountered, but might if a draft invoice is deleted from Xero.
70
+ def test_to_ensure_that_an_invoice_with_invalid_id_errors
71
+ # Make sure there is an invoice to retrieve, even though we will mangle it later.
72
+ invoice = @gateway.create_invoice(dummy_invoice).invoice
73
+
74
+ result = @gateway.get_invoices
75
+ assert_equal(true, result.success?)
76
+
77
+ invoice = result.invoices.first
78
+ assert_equal(false, invoice.line_items_downloaded?)
79
+
80
+ # Mangle invoice_id to invalid one.
81
+ invoice.invoice_id = INVALID_INVOICE_ID
82
+
83
+ # Make sure we fail here.
84
+ line_items = nil
85
+ assert_raise(XeroGateway::InvoiceNotFoundError) { line_items = invoice.line_items }
86
+ assert_nil(line_items)
87
+
88
+ end
89
+
90
+ end
@@ -0,0 +1,24 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+
3
+ class GetOrganisationTest < Test::Unit::TestCase
4
+ include TestHelper
5
+
6
+ def setup
7
+ @gateway = XeroGateway::Gateway.new(CONSUMER_KEY, CONSUMER_SECRET)
8
+
9
+ if STUB_XERO_CALLS
10
+ @gateway.xero_url = "DUMMY_URL"
11
+
12
+ @gateway.stubs(:http_get).with {|client, url, params| url =~ /Organisation$/ }.returns(get_file_as_string("organisation.xml"))
13
+ end
14
+ end
15
+
16
+ def test_get_organisation
17
+ result = @gateway.get_organisation
18
+ assert result.success?
19
+ assert !result.response_xml.nil?
20
+
21
+ assert_equal XeroGateway::Organisation, result.organisation.class
22
+ assert_equal "Demo Company (NZ)", result.organisation.name
23
+ end
24
+ end
@@ -0,0 +1,25 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+
3
+ class GetTaxRatesTest < Test::Unit::TestCase
4
+ include TestHelper
5
+
6
+ def setup
7
+ @gateway = XeroGateway::Gateway.new(CONSUMER_KEY, CONSUMER_SECRET)
8
+
9
+ if STUB_XERO_CALLS
10
+ @gateway.xero_url = "DUMMY_URL"
11
+
12
+ @gateway.stubs(:http_get).with {|client, url, params| url =~ /TaxRates$/ }.returns(get_file_as_string("tax_rates.xml"))
13
+ end
14
+ end
15
+
16
+ def test_get_tax_rates
17
+ result = @gateway.get_tax_rates
18
+ assert result.success?
19
+ assert !result.response_xml.nil?
20
+
21
+ assert result.tax_rates.size > 0
22
+ assert_equal XeroGateway::TaxRate, result.tax_rates.first.class
23
+ assert_equal "GST on Expenses", result.tax_rates.first.name
24
+ end
25
+ end
@@ -0,0 +1,26 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+
3
+ class GetTrackingCategoriesTest < Test::Unit::TestCase
4
+ include TestHelper
5
+
6
+ def setup
7
+ @gateway = XeroGateway::Gateway.new(CONSUMER_KEY, CONSUMER_SECRET)
8
+
9
+ if STUB_XERO_CALLS
10
+ @gateway.xero_url = "DUMMY_URL"
11
+
12
+ @gateway.stubs(:http_get).with {|client, url, params| url =~ /TrackingCategories$/ }.returns(get_file_as_string("tracking_categories.xml"))
13
+ end
14
+ end
15
+
16
+ def test_get_tracking_categories
17
+ result = @gateway.get_tracking_categories
18
+ assert result.success?
19
+ assert !result.response_xml.nil?
20
+ if STUB_XERO_CALLS
21
+ # When operating against the Xero test environment, there may not be any tracking categories present,
22
+ # so this assertion can only be done when operating against stub responses
23
+ assert result.tracking_categories.size == 2
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,31 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+
3
+ class UpdateContactTest < Test::Unit::TestCase
4
+ include TestHelper
5
+
6
+ def setup
7
+ @gateway = XeroGateway::Gateway.new(CONSUMER_KEY, CONSUMER_SECRET)
8
+
9
+ if STUB_XERO_CALLS
10
+ @gateway.xero_url = "DUMMY_URL"
11
+
12
+ @gateway.stubs(:http_put).with {|client, url, body, params| url =~ /Contacts$/ }.returns(get_file_as_string("contact.xml"))
13
+ @gateway.stubs(:http_post).with {|client, url, body, params| url =~ /Contacts$/ }.returns(get_file_as_string("contact.xml"))
14
+ end
15
+ end
16
+
17
+ def test_update_contact
18
+ # Make sure there is a contact in Xero to retrieve
19
+ contact = @gateway.create_contact(dummy_contact).contact
20
+
21
+ contact.phone.number = "123 4567"
22
+
23
+ result = @gateway.update_contact(contact)
24
+
25
+ assert result.success?
26
+ assert !result.request_xml.nil?
27
+ assert !result.response_xml.nil?
28
+ assert_equal contact.contact_id, result.contact.contact_id
29
+ assert_equal "123 4567", result.contact.phone.number if !STUB_XERO_CALLS
30
+ end
31
+ end
@@ -0,0 +1 @@
1
+ <?xml version="1.0"?><Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><ID>cf37ba46-29a7-4824-ad63-43482463afed</ID><Status>OK</Status><ProviderName>YOUR PROVIDER</ProviderName><DateTimeUTC>2008-12-01T08:39:54.70175Z</DateTimeUTC><Accounts><Account><Code>200</Code><Name>Sales</Name><Type>REVENUE</Type><TaxType>OUTPUT</TaxType><Description>Income from any normal business activity</Description></Account><Account><Code>260</Code><Name>Other Revenue</Name><Type>REVENUE</Type><TaxType>OUTPUT</TaxType><Description>Any other income that does not relate to normal business activities and is not recurring</Description></Account><Account><Code>270</Code><Name>Interest Income</Name><Type>REVENUE</Type><TaxType>NONE</TaxType><Description>Gross interest income (i.e. before deducting Residential Withholding Tax), such as bank interest</Description></Account><Account><Code>400</Code><Name>Advertising</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>Expenses incurred for advertising while trying to increase sales</Description></Account><Account><Code>404</Code><Name>Bank Fees</Name><Type>OVERHEADS</Type><TaxType>NONE</TaxType><Description>Fees charged by your bank for transactions regarding your bank account(s).</Description></Account><Account><Code>408</Code><Name>Cleaning</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>Expenses incurred for cleaning business property.</Description></Account><Account><Code>412</Code><Name>Consulting &amp; Accounting</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>Expenses related to paying consultants</Description></Account><Account><Code>416</Code><Name>Depreciation</Name><Type>OVERHEADS</Type><TaxType>NONE</TaxType><Description>The amount of the asset's cost (based on the useful life) that was consumed during the period</Description></Account><Account><Code>420</Code><Name>Entertainment</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>50% of the total expense relating to business-related entertainment. E.g. shouting clients or employees a drink or a meal etc.</Description></Account><Account><Code>424</Code><Name>Entertainment - Non deductible</Name><Type>OVERHEADS</Type><TaxType>NONE</TaxType><Description>Expenses paid by company for the business but are not deductable for income tax purposes.</Description></Account><Account><Code>425</Code><Name>Freight &amp; Courier</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>Expenses incurred on courier &amp; freight costs</Description></Account><Account><Code>429</Code><Name>General Expenses</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>General expenses related to the running of the business.</Description></Account><Account><Code>433</Code><Name>Insurance</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>Expenses incurred for insuring the business' assets</Description></Account><Account><Code>437</Code><Name>Interest Expense</Name><Type>OVERHEADS</Type><TaxType>NONE</TaxType><Description>Any interest expenses paid to IRD, business bank accounts or credit card accounts.</Description></Account><Account><Code>441</Code><Name>Legal expenses</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>Expenses incurred on any legal matters</Description></Account><Account><Code>445</Code><Name>Light, Power, Heating</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>Expenses incurred for lighting, powering or heating the premises</Description></Account><Account><Code>449</Code><Name>Motor Vehicle Expenses</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>Expenses incurred on the running of company motor vehicles</Description></Account><Account><Code>453</Code><Name>Office Expenses</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>General expenses related to the running of the business office.</Description></Account><Account><Code>461</Code><Name>Printing &amp; Stationery</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>Expenses incurred by the entity as a result of printing and stationery</Description></Account><Account><Code>469</Code><Name>Rent</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>The payment to lease a building or area.</Description></Account><Account><Code>473</Code><Name>Repairs and Maintenance</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>Expenses incurred on a damaged or run down asset that will bring the asset back to its original condition.</Description></Account><Account><Code>477</Code><Name>Salaries</Name><Type>OVERHEADS</Type><TaxType>NONE</TaxType><Description>Payment to employees in exchange for their resources</Description></Account><Account><Code>478</Code><Name>KiwiSaver Employer Contributions</Name><Type>OVERHEADS</Type><TaxType>NONE</TaxType><Description>KiwiSaver employer contributions</Description></Account><Account><Code>485</Code><Name>Subscriptions</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>E.g. Magazines, professional bodies.</Description></Account><Account><Code>489</Code><Name>Telephone &amp; Internet</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>Expenditure incurred from any business-related phone calls, phone lines, or internet connections</Description></Account><Account><Code>493</Code><Name>Travel - National</Name><Type>OVERHEADS</Type><TaxType>INPUT</TaxType><Description>Expenses incurred from domestic travel which has a business purpose</Description></Account><Account><Code>494</Code><Name>Travel - International</Name><Type>OVERHEADS</Type><TaxType>NONE</TaxType><Description>Expenses incurred from international travel which has a business purpose</Description></Account><Account><Code>505</Code><Name>Income Tax Expense</Name><Type>EXPENSE</Type><TaxType>NONE</TaxType><Description>A percentage of total earnings paid to the government.</Description></Account><Account><Code>610</Code><Name>Accounts Receivable</Name><Type>CURRENT</Type><TaxType>NONE</TaxType><Description>Outstanding invoices the company has issued out to the client but has not yet received in cash at balance date.</Description></Account><Account><Code>611</Code><Name>less Provision for Doubtful Debts</Name><Type>CURRENT</Type><TaxType>NONE</TaxType><Description>A provision anticipating that some of the accounts receivables will become bad debts.</Description></Account><Account><Code>620</Code><Name>Prepayments</Name><Type>CURRENT</Type><TaxType>NONE</TaxType><Description>An expenditure that has been paid for in advance.</Description></Account><Account><Code>625</Code><Name>Withholding tax paid</Name><Type>CURRENT</Type><TaxType>NONE</TaxType><Description>Withholding tax paid</Description></Account><Account><Code>710</Code><Name>Office Equipment</Name><Type>FIXED</Type><TaxType>INPUT</TaxType><Description>Office equipment that is owned and controlled by the business</Description></Account><Account><Code>711</Code><Name>Less Accumulated Depreciation on Office Equipment</Name><Type>FIXED</Type><TaxType>NONE</TaxType><Description>The total amount of office equipment cost that has been consumed by the entity (based on the useful life)</Description></Account><Account><Code>720</Code><Name>Computer Equipment</Name><Type>FIXED</Type><TaxType>INPUT</TaxType><Description>Computer equipment that is owned and controlled by the business</Description></Account><Account><Code>721</Code><Name>Less Accumulated Depreciation on Computer Equipment</Name><Type>FIXED</Type><TaxType>NONE</TaxType><Description>The total amount of computer equipment cost that has been consumed by the business (based on the useful life)</Description></Account><Account><Code>800</Code><Name>Accounts Payable</Name><Type>CURRLIAB</Type><TaxType>NONE</TaxType><Description>Outstanding invoices the company has received from suppliers but has not yet paid at balance date</Description></Account><Account><Code>801</Code><Name>Unpaid Expense Claims</Name><Type>CURRLIAB</Type><TaxType>NONE</TaxType><Description>Expense claims typically made by employees/shareholder employees still outstanding.</Description></Account><Account><Code>820</Code><Name>GST</Name><Type>CURRLIAB</Type><TaxType>NONE</TaxType><Description>The balance in this account represents GST owing to or from the IRD. At the end of the GST period, it is this account that should be used to code against either the 'refunds from' or 'payments to' the IRD that will appear on the bank statement. Xero has been designed to use only one GST account to track GST on income and expenses, so there is no need to add any new GST accounts to Xero.</Description></Account><Account><Code>821</Code><Name>GST On Imports</Name><Type>CURRLIAB</Type><TaxType>NONE</TaxType><Description>GST paid to customs.</Description></Account><Account><Code>825</Code><Name>PAYE Payable</Name><Type>CURRLIAB</Type><TaxType>NONE</TaxType><Description>The amount of PAYE tax that is due to be paid</Description></Account><Account><Code>830</Code><Name>Income Tax</Name><Type>CURRLIAB</Type><TaxType>NONE</TaxType><Description>The amount of income tax that is due to be paid, also resident withholding tax paid on interest received.</Description></Account><Account><Code>840</Code><Name>Historical Adjustment</Name><Type>CURRLIAB</Type><TaxType>NONE</TaxType><Description>For accountant adjustments</Description></Account><Account><Code>850</Code><Name>Suspense</Name><Type>CURRLIAB</Type><TaxType>NONE</TaxType><Description>An entry that allows an unknown transaction to be entered, so the accounts can still be worked on in balance and the entry can be dealt with later.</Description></Account><Account><Code>860</Code><Name>Rounding</Name><Type>CURRLIAB</Type><TaxType>NONE</TaxType><Description>An adjustment entry to allow for rounding</Description></Account><Account><Code>877</Code><Name>Tracking Transfers</Name><Type>CURRLIAB</Type><TaxType>NONE</TaxType><Description>Transfers between tracking categories</Description></Account><Account><Code>900</Code><Name>Loan</Name><Type>TERMLIAB</Type><TaxType>NONE</TaxType><Description>Money that has been borrowed from a creditor</Description></Account><Account><Code>960</Code><Name>Retained Earnings</Name><Type>EQUITY</Type><TaxType>NONE</TaxType><Description>Do not Use</Description></Account><Account><Code>970</Code><Name>Owner A Funds Introduced</Name><Type>EQUITY</Type><TaxType>NONE</TaxType><Description>Funds contributed by the owner</Description></Account><Account><Code>980</Code><Name>Owner A Drawings</Name><Type>EQUITY</Type><TaxType>NONE</TaxType><Description>Withdrawals by the owners</Description></Account></Accounts></Response>
@@ -0,0 +1,153 @@
1
+ <?xml version="1.0" encoding="utf-16"?>
2
+ <ApiException xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
3
+ <ErrorNumber>10</ErrorNumber>
4
+ <Type>ValidationException</Type>
5
+ <Message>A validation exception occurred</Message>
6
+ <Elements>
7
+ <DataContractBase xsi:type="Invoice">
8
+ <ValidationErrors>
9
+ <ValidationError>
10
+ <Message>Users Organisation is not subscribed to currency NZD</Message>
11
+ </ValidationError>
12
+ </ValidationErrors>
13
+ <Warnings />
14
+ <Reference>Ref:SMITHK</Reference>
15
+ <Type>ACCREC</Type>
16
+ <Contact>
17
+ <ValidationErrors />
18
+ <Warnings />
19
+ <ContactID>00000000-0000-0000-0000-000000000000</ContactID>
20
+ <ContactNumber>0006841301</ContactNumber>
21
+ <ContactStatus>ACTIVE</ContactStatus>
22
+ <Name>Ariki Properties</Name>
23
+ <FirstName>Simon</FirstName>
24
+ <LastName>Greenville</LastName>
25
+ <EmailAddress>emailaddress@yourdomain.com</EmailAddress>
26
+ <SkypeUserName>Skype Name/Number</SkypeUserName>
27
+ <BankAccountDetails>Bank Account Details</BankAccountDetails>
28
+ <TaxNumber>Tax ID Number</TaxNumber>
29
+ <AccountsPayableTaxType>INPUT</AccountsPayableTaxType>
30
+ <Addresses>
31
+ <Address>
32
+ <ValidationErrors />
33
+ <Warnings />
34
+ <AddressType>STREET</AddressType>
35
+ <AddressLine1>Level 71</AddressLine1>
36
+ <AddressLine2>30 Rockefeller plaza</AddressLine2>
37
+ <AddressLine3 />
38
+ <AddressLine4 />
39
+ <City>New York</City>
40
+ <Region>New York State</Region>
41
+ <PostalCode>10112</PostalCode>
42
+ <Country>USA</Country>
43
+ <AttentionTo>Simon G.</AttentionTo>
44
+ </Address>
45
+ <Address>
46
+ <ValidationErrors />
47
+ <Warnings />
48
+ <AddressType>POBOX</AddressType>
49
+ <AddressLine1>PO Box 10112</AddressLine1>
50
+ <AddressLine2 />
51
+ <AddressLine3 />
52
+ <AddressLine4 />
53
+ <City>New York</City>
54
+ <Region>New York State</Region>
55
+ <PostalCode>10112</PostalCode>
56
+ <Country>USA</Country>
57
+ <AttentionTo>Simon G.</AttentionTo>
58
+ </Address>
59
+ </Addresses>
60
+ <Phones>
61
+ <Phone>
62
+ <ValidationErrors />
63
+ <Warnings />
64
+ <PhoneType>DEFAULT</PhoneType>
65
+ <PhoneNumber>5996999</PhoneNumber>
66
+ <PhoneAreaCode>877</PhoneAreaCode>
67
+ <PhoneCountryCode>0001</PhoneCountryCode>
68
+ </Phone>
69
+ <Phone>
70
+ <ValidationErrors />
71
+ <Warnings />
72
+ <PhoneType>DDI</PhoneType>
73
+ <PhoneNumber>1234567</PhoneNumber>
74
+ <PhoneAreaCode>877</PhoneAreaCode>
75
+ <PhoneCountryCode>0001</PhoneCountryCode>
76
+ </Phone>
77
+ <Phone>
78
+ <ValidationErrors />
79
+ <Warnings />
80
+ <PhoneType>FAX</PhoneType>
81
+ <PhoneNumber>7654321</PhoneNumber>
82
+ <PhoneAreaCode>877</PhoneAreaCode>
83
+ <PhoneCountryCode>0001</PhoneCountryCode>
84
+ </Phone>
85
+ <Phone>
86
+ <ValidationErrors />
87
+ <Warnings />
88
+ <PhoneType>MOBILE</PhoneType>
89
+ <PhoneNumber>5555555</PhoneNumber>
90
+ <PhoneAreaCode>877</PhoneAreaCode>
91
+ <PhoneCountryCode>0001</PhoneCountryCode>
92
+ </Phone>
93
+ </Phones>
94
+ <UpdatedDateUTC xsi:nil="true" />
95
+ <ContactGroups />
96
+ <IsSupplier xsi:nil="true" />
97
+ <IsCustomer xsi:nil="true" />
98
+ <DefaultCurrency>USD</DefaultCurrency>
99
+ </Contact>
100
+ <Date>2009-09-08T00:00:00</Date>
101
+ <DueDate>2009-10-20T00:00:00</DueDate>
102
+ <Status>SUBMITTED</Status>
103
+ <LineAmountTypes>Inclusive</LineAmountTypes>
104
+ <LineItems>
105
+ <LineItem>
106
+ <ValidationErrors />
107
+ <Warnings />
108
+ <Description>3 copies of OS X 10.6 Snow Leopard</Description>
109
+ <Quantity>3.0000</Quantity>
110
+ <UnitAmount>59.00</UnitAmount>
111
+ <TaxType>OUTPUT</TaxType>
112
+ <TaxAmount>19.67</TaxAmount>
113
+ <LineAmount>177.00</LineAmount>
114
+ <AccountCode>200</AccountCode>
115
+ <Tracking>
116
+ <TrackingCategory>
117
+ <ValidationErrors />
118
+ <Warnings />
119
+ <TrackingCategoryID>e2f2f732-e92a-4f3a-9c4d-ee4da0182a13</TrackingCategoryID>
120
+ <Name>Region</Name>
121
+ <Option>North</Option>
122
+ <Options />
123
+ </TrackingCategory>
124
+ </Tracking>
125
+ </LineItem>
126
+ <LineItem>
127
+ <ValidationErrors />
128
+ <Warnings />
129
+ <Description>Returned Apple Keyboard with Numeric Keypad (faulty)</Description>
130
+ <Quantity>1.0000</Quantity>
131
+ <UnitAmount>-79.00</UnitAmount>
132
+ <TaxType>OUTPUT</TaxType>
133
+ <TaxAmount>-8.78</TaxAmount>
134
+ <LineAmount>-79.00</LineAmount>
135
+ <AccountCode>200</AccountCode>
136
+ <Tracking />
137
+ </LineItem>
138
+ </LineItems>
139
+ <SubTotal>87.11</SubTotal>
140
+ <TotalTax>10.90</TotalTax>
141
+ <Total>98.00</Total>
142
+ <UpdatedDateUTC xsi:nil="true" />
143
+ <CurrencyCode>NZD</CurrencyCode>
144
+ <FullyPaidOnDate xsi:nil="true" />
145
+ <InvoiceID>00000000-0000-0000-0000-000000000000</InvoiceID>
146
+ <InvoiceNumber>OIT:01065</InvoiceNumber>
147
+ <Payments />
148
+ <AmountDue xsi:nil="true" />
149
+ <AmountPaid xsi:nil="true" />
150
+ <AmountCredited xsi:nil="true" />
151
+ </DataContractBase>
152
+ </Elements>
153
+ </ApiException>
@@ -0,0 +1 @@
1
+ <?xml version="1.0"?><Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><ID>a99a9aaa-9999-99a9-9aa9-aaaaaa9a9999</ID><Status>OK</Status><ProviderName>YOUR PROVIDER</ProviderName><DateTimeUTC>2008-10-09T02:40:54.3997437Z</DateTimeUTC><Contact><ContactID>e8d9ecd8-c17a-49c4-a445-708875ccb042</ContactID><ContactNumber>12345</ContactNumber><Name>CONTACT NAME</Name><EmailAddress>bob@example.com</EmailAddress><Addresses><Address><AddressType>DEFAULT</AddressType><AddressLine1>LINE 1 OF THE ADDRESS</AddressLine1><AddressLine2>LINE 2 OF THE ADDRESS</AddressLine2><AddressLine3>LINE 3 OF THE ADDRESS</AddressLine3><AddressLine4>LINE 4 OF THE ADDRESS</AddressLine4><City>WELLINGTON</City><Region>WELLINGTON</Region><PostalCode>6021</PostalCode><Country>NEW ZEALAND</Country></Address></Addresses><Phones><Phone><PhoneType>DEFAULT</PhoneType><PhoneNumber>12345</PhoneNumber></Phone></Phones></Contact></Response>
@@ -0,0 +1,2189 @@
1
+ <Response xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
2
+ <Id>ff81d9d2-3935-4be8-b532-e8388e84eebd</Id>
3
+ <Status>OK</Status>
4
+ <ProviderName>Xero Gateway Test</ProviderName>
5
+ <DateTimeUTC>2009-10-18T09:16:55.688585Z</DateTimeUTC>
6
+ <Contacts>
7
+ <Contact>
8
+ <ContactID>a99a9aaa-9999-99a9-9aa9-aaaaaa9a9999</ContactID>
9
+ <ContactStatus>ACTIVE</ContactStatus>
10
+ <Name>A. Dutchess</Name>
11
+ <Addresses>
12
+ <Address>
13
+ <AddressType>STREET</AddressType>
14
+ </Address>
15
+ <Address>
16
+ <AddressType>POBOX</AddressType>
17
+ <AddressLine1>P O Box 123</AddressLine1>
18
+ <City>Wellington</City>
19
+ <PostalCode>6011</PostalCode>
20
+ </Address>
21
+ </Addresses>
22
+ <Phones>
23
+ <Phone>
24
+ <PhoneType>DDI</PhoneType>
25
+ </Phone>
26
+ <Phone>
27
+ <PhoneType>MOBILE</PhoneType>
28
+ </Phone>
29
+ <Phone>
30
+ <PhoneType>FAX</PhoneType>
31
+ </Phone>
32
+ <Phone>
33
+ <PhoneType>DEFAULT</PhoneType>
34
+ </Phone>
35
+ </Phones>
36
+ <UpdatedDateUTC>2009-09-22T01:44:26.747</UpdatedDateUTC>
37
+ <IsSupplier>false</IsSupplier>
38
+ <IsCustomer>true</IsCustomer>
39
+ </Contact>
40
+ <Contact>
41
+ <ContactID>fa9b7c13-f03f-47e5-bf7d-0747fbf9f150</ContactID>
42
+ <ContactStatus>ACTIVE</ContactStatus>
43
+ <Name>Adam Jefferson</Name>
44
+ <Addresses>
45
+ <Address>
46
+ <AddressType>STREET</AddressType>
47
+ </Address>
48
+ <Address>
49
+ <AddressType>POBOX</AddressType>
50
+ </Address>
51
+ </Addresses>
52
+ <Phones>
53
+ <Phone>
54
+ <PhoneType>MOBILE</PhoneType>
55
+ </Phone>
56
+ <Phone>
57
+ <PhoneType>DEFAULT</PhoneType>
58
+ </Phone>
59
+ <Phone>
60
+ <PhoneType>DDI</PhoneType>
61
+ </Phone>
62
+ <Phone>
63
+ <PhoneType>FAX</PhoneType>
64
+ </Phone>
65
+ </Phones>
66
+ <UpdatedDateUTC>2009-09-22T01:44:57.11</UpdatedDateUTC>
67
+ <IsSupplier>false</IsSupplier>
68
+ <IsCustomer>true</IsCustomer>
69
+ </Contact>
70
+ <Contact>
71
+ <ContactID>a2fa2310-44fc-48ea-981e-2b7ebbccaad6</ContactID>
72
+ <ContactStatus>ACTIVE</ContactStatus>
73
+ <Name>Alexandria Jefferson</Name>
74
+ <Addresses>
75
+ <Address>
76
+ <AddressType>STREET</AddressType>
77
+ </Address>
78
+ <Address>
79
+ <AddressType>POBOX</AddressType>
80
+ </Address>
81
+ </Addresses>
82
+ <Phones>
83
+ <Phone>
84
+ <PhoneType>FAX</PhoneType>
85
+ </Phone>
86
+ <Phone>
87
+ <PhoneType>DDI</PhoneType>
88
+ </Phone>
89
+ <Phone>
90
+ <PhoneType>DEFAULT</PhoneType>
91
+ </Phone>
92
+ <Phone>
93
+ <PhoneType>MOBILE</PhoneType>
94
+ </Phone>
95
+ </Phones>
96
+ <UpdatedDateUTC>2009-09-22T00:10:47.01</UpdatedDateUTC>
97
+ <IsSupplier>false</IsSupplier>
98
+ <IsCustomer>true</IsCustomer>
99
+ </Contact>
100
+ <Contact>
101
+ <ContactID>3d0e9bb6-bafa-4962-9ce7-e0487cd19b68</ContactID>
102
+ <ContactStatus>ACTIVE</ContactStatus>
103
+ <Name>Altona Clinton</Name>
104
+ <Addresses>
105
+ <Address>
106
+ <AddressType>STREET</AddressType>
107
+ </Address>
108
+ <Address>
109
+ <AddressType>POBOX</AddressType>
110
+ </Address>
111
+ </Addresses>
112
+ <Phones>
113
+ <Phone>
114
+ <PhoneType>MOBILE</PhoneType>
115
+ </Phone>
116
+ <Phone>
117
+ <PhoneType>DDI</PhoneType>
118
+ </Phone>
119
+ <Phone>
120
+ <PhoneType>FAX</PhoneType>
121
+ </Phone>
122
+ <Phone>
123
+ <PhoneType>DEFAULT</PhoneType>
124
+ </Phone>
125
+ </Phones>
126
+ <UpdatedDateUTC>2009-09-22T01:49:21.887</UpdatedDateUTC>
127
+ <IsSupplier>false</IsSupplier>
128
+ <IsCustomer>true</IsCustomer>
129
+ </Contact>
130
+ <Contact>
131
+ <ContactID>3e1d3ba5-609a-4e10-bb1d-75b6d31ce922</ContactID>
132
+ <ContactStatus>ACTIVE</ContactStatus>
133
+ <Name>AMP</Name>
134
+ <Addresses>
135
+ <Address>
136
+ <AddressType>STREET</AddressType>
137
+ </Address>
138
+ <Address>
139
+ <AddressType>POBOX</AddressType>
140
+ </Address>
141
+ </Addresses>
142
+ <Phones>
143
+ <Phone>
144
+ <PhoneType>MOBILE</PhoneType>
145
+ </Phone>
146
+ <Phone>
147
+ <PhoneType>DDI</PhoneType>
148
+ </Phone>
149
+ <Phone>
150
+ <PhoneType>DEFAULT</PhoneType>
151
+ </Phone>
152
+ <Phone>
153
+ <PhoneType>FAX</PhoneType>
154
+ </Phone>
155
+ </Phones>
156
+ <UpdatedDateUTC>2009-09-21T23:07:47.49</UpdatedDateUTC>
157
+ <IsSupplier>false</IsSupplier>
158
+ <IsCustomer>true</IsCustomer>
159
+ </Contact>
160
+ <Contact>
161
+ <ContactID>6d572c50-4d0a-4def-8fc9-d4daff7cb423</ContactID>
162
+ <ContactStatus>ACTIVE</ContactStatus>
163
+ <Name>Angelica Allegany</Name>
164
+ <Addresses>
165
+ <Address>
166
+ <AddressType>STREET</AddressType>
167
+ </Address>
168
+ <Address>
169
+ <AddressType>POBOX</AddressType>
170
+ </Address>
171
+ </Addresses>
172
+ <Phones>
173
+ <Phone>
174
+ <PhoneType>MOBILE</PhoneType>
175
+ </Phone>
176
+ <Phone>
177
+ <PhoneType>DEFAULT</PhoneType>
178
+ </Phone>
179
+ <Phone>
180
+ <PhoneType>FAX</PhoneType>
181
+ </Phone>
182
+ <Phone>
183
+ <PhoneType>DDI</PhoneType>
184
+ </Phone>
185
+ </Phones>
186
+ <UpdatedDateUTC>2009-09-22T01:48:42.493</UpdatedDateUTC>
187
+ <IsSupplier>false</IsSupplier>
188
+ <IsCustomer>true</IsCustomer>
189
+ </Contact>
190
+ <Contact>
191
+ <ContactID>7cc756a5-4f61-4850-a684-fb649223eafc</ContactID>
192
+ <ContactStatus>ACTIVE</ContactStatus>
193
+ <Name>Arcardia Wayne</Name>
194
+ <Addresses>
195
+ <Address>
196
+ <AddressType>POBOX</AddressType>
197
+ </Address>
198
+ <Address>
199
+ <AddressType>STREET</AddressType>
200
+ </Address>
201
+ </Addresses>
202
+ <Phones>
203
+ <Phone>
204
+ <PhoneType>DEFAULT</PhoneType>
205
+ </Phone>
206
+ <Phone>
207
+ <PhoneType>FAX</PhoneType>
208
+ </Phone>
209
+ <Phone>
210
+ <PhoneType>MOBILE</PhoneType>
211
+ </Phone>
212
+ <Phone>
213
+ <PhoneType>DDI</PhoneType>
214
+ </Phone>
215
+ </Phones>
216
+ <UpdatedDateUTC>2009-09-22T01:47:33.173</UpdatedDateUTC>
217
+ <IsSupplier>false</IsSupplier>
218
+ <IsCustomer>true</IsCustomer>
219
+ </Contact>
220
+ <Contact>
221
+ <ContactID>cd848c63-235e-4b9d-a9aa-97d24c1a5bd3</ContactID>
222
+ <ContactStatus>ACTIVE</ContactStatus>
223
+ <Name>Ariki Properties</Name>
224
+ <Addresses>
225
+ <Address>
226
+ <AddressType>POBOX</AddressType>
227
+ </Address>
228
+ <Address>
229
+ <AddressType>STREET</AddressType>
230
+ </Address>
231
+ </Addresses>
232
+ <Phones>
233
+ <Phone>
234
+ <PhoneType>MOBILE</PhoneType>
235
+ </Phone>
236
+ <Phone>
237
+ <PhoneType>DDI</PhoneType>
238
+ </Phone>
239
+ <Phone>
240
+ <PhoneType>DEFAULT</PhoneType>
241
+ </Phone>
242
+ <Phone>
243
+ <PhoneType>FAX</PhoneType>
244
+ </Phone>
245
+ </Phones>
246
+ <UpdatedDateUTC>2009-09-21T23:11:11.107</UpdatedDateUTC>
247
+ <IsSupplier>false</IsSupplier>
248
+ <IsCustomer>true</IsCustomer>
249
+ </Contact>
250
+ <Contact>
251
+ <ContactID>25e5e25d-7588-4b57-afc3-1aad34c9667d</ContactID>
252
+ <ContactStatus>ACTIVE</ContactStatus>
253
+ <Name>Barton Beans</Name>
254
+ <Addresses>
255
+ <Address>
256
+ <AddressType>STREET</AddressType>
257
+ </Address>
258
+ <Address>
259
+ <AddressType>POBOX</AddressType>
260
+ </Address>
261
+ </Addresses>
262
+ <Phones>
263
+ <Phone>
264
+ <PhoneType>FAX</PhoneType>
265
+ </Phone>
266
+ <Phone>
267
+ <PhoneType>DEFAULT</PhoneType>
268
+ </Phone>
269
+ <Phone>
270
+ <PhoneType>MOBILE</PhoneType>
271
+ </Phone>
272
+ <Phone>
273
+ <PhoneType>DDI</PhoneType>
274
+ </Phone>
275
+ </Phones>
276
+ <UpdatedDateUTC>2009-09-22T01:38:22.597</UpdatedDateUTC>
277
+ <IsSupplier>true</IsSupplier>
278
+ <IsCustomer>false</IsCustomer>
279
+ </Contact>
280
+ <Contact>
281
+ <ContactID>cd09aa49-134d-40fb-a52b-b63c6a91d712</ContactID>
282
+ <ContactStatus>ACTIVE</ContactStatus>
283
+ <Name>Basket Case</Name>
284
+ <Addresses>
285
+ <Address>
286
+ <AddressType>STREET</AddressType>
287
+ </Address>
288
+ <Address>
289
+ <AddressType>POBOX</AddressType>
290
+ <AddressLine1>23 Forrester Way</AddressLine1>
291
+ <City>Ridgeville</City>
292
+ <PostalCode>901004</PostalCode>
293
+ </Address>
294
+ </Addresses>
295
+ <Phones>
296
+ <Phone>
297
+ <PhoneType>DEFAULT</PhoneType>
298
+ <PhoneNumber>123456</PhoneNumber>
299
+ <PhoneAreaCode>04</PhoneAreaCode>
300
+ </Phone>
301
+ <Phone>
302
+ <PhoneType>DDI</PhoneType>
303
+ </Phone>
304
+ <Phone>
305
+ <PhoneType>FAX</PhoneType>
306
+ <PhoneNumber>210210</PhoneNumber>
307
+ <PhoneAreaCode>021</PhoneAreaCode>
308
+ </Phone>
309
+ <Phone>
310
+ <PhoneType>MOBILE</PhoneType>
311
+ </Phone>
312
+ </Phones>
313
+ <UpdatedDateUTC>2010-03-08T21:02:42.983</UpdatedDateUTC>
314
+ <IsSupplier>true</IsSupplier>
315
+ <IsCustomer>true</IsCustomer>
316
+ </Contact>
317
+ <Contact>
318
+ <ContactID>e9f84219-c6c5-4e87-a2b7-066d2f1064e0</ContactID>
319
+ <ContactStatus>ACTIVE</ContactStatus>
320
+ <Name>Big Electric</Name>
321
+ <Addresses>
322
+ <Address>
323
+ <AddressType>STREET</AddressType>
324
+ </Address>
325
+ <Address>
326
+ <AddressType>POBOX</AddressType>
327
+ </Address>
328
+ </Addresses>
329
+ <Phones>
330
+ <Phone>
331
+ <PhoneType>DEFAULT</PhoneType>
332
+ </Phone>
333
+ <Phone>
334
+ <PhoneType>DDI</PhoneType>
335
+ </Phone>
336
+ <Phone>
337
+ <PhoneType>MOBILE</PhoneType>
338
+ </Phone>
339
+ <Phone>
340
+ <PhoneType>FAX</PhoneType>
341
+ </Phone>
342
+ </Phones>
343
+ <UpdatedDateUTC>2010-01-20T02:39:53.7</UpdatedDateUTC>
344
+ <IsSupplier>true</IsSupplier>
345
+ <IsCustomer>false</IsCustomer>
346
+ </Contact>
347
+ <Contact>
348
+ <ContactID>c09661a2-a954-4e34-98df-f8b6d1dc9b19</ContactID>
349
+ <ContactStatus>ACTIVE</ContactStatus>
350
+ <Name>BNZ</Name>
351
+ <Addresses>
352
+ <Address>
353
+ <AddressType>POBOX</AddressType>
354
+ </Address>
355
+ <Address>
356
+ <AddressType>STREET</AddressType>
357
+ </Address>
358
+ </Addresses>
359
+ <Phones>
360
+ <Phone>
361
+ <PhoneType>DEFAULT</PhoneType>
362
+ </Phone>
363
+ <Phone>
364
+ <PhoneType>MOBILE</PhoneType>
365
+ </Phone>
366
+ <Phone>
367
+ <PhoneType>DDI</PhoneType>
368
+ </Phone>
369
+ <Phone>
370
+ <PhoneType>FAX</PhoneType>
371
+ </Phone>
372
+ </Phones>
373
+ <UpdatedDateUTC>2009-09-22T19:26:39.157</UpdatedDateUTC>
374
+ <IsSupplier>true</IsSupplier>
375
+ <IsCustomer>true</IsCustomer>
376
+ </Contact>
377
+ <Contact>
378
+ <ContactID>47cca020-95cc-47c8-bdb8-c593f840872d</ContactID>
379
+ <ContactStatus>ACTIVE</ContactStatus>
380
+ <Name>Bond Street Carnival</Name>
381
+ <Addresses>
382
+ <Address>
383
+ <AddressType>POBOX</AddressType>
384
+ </Address>
385
+ <Address>
386
+ <AddressType>STREET</AddressType>
387
+ </Address>
388
+ </Addresses>
389
+ <Phones>
390
+ <Phone>
391
+ <PhoneType>DDI</PhoneType>
392
+ </Phone>
393
+ <Phone>
394
+ <PhoneType>DEFAULT</PhoneType>
395
+ </Phone>
396
+ <Phone>
397
+ <PhoneType>FAX</PhoneType>
398
+ </Phone>
399
+ <Phone>
400
+ <PhoneType>MOBILE</PhoneType>
401
+ </Phone>
402
+ </Phones>
403
+ <UpdatedDateUTC>2009-09-21T23:53:48.883</UpdatedDateUTC>
404
+ <IsSupplier>false</IsSupplier>
405
+ <IsCustomer>true</IsCustomer>
406
+ </Contact>
407
+ <Contact>
408
+ <ContactID>779cc980-1565-44e9-bc79-72cd0a984677</ContactID>
409
+ <ContactStatus>ACTIVE</ContactStatus>
410
+ <Name>BP</Name>
411
+ <Addresses>
412
+ <Address>
413
+ <AddressType>STREET</AddressType>
414
+ </Address>
415
+ <Address>
416
+ <AddressType>POBOX</AddressType>
417
+ </Address>
418
+ </Addresses>
419
+ <Phones>
420
+ <Phone>
421
+ <PhoneType>FAX</PhoneType>
422
+ </Phone>
423
+ <Phone>
424
+ <PhoneType>DEFAULT</PhoneType>
425
+ </Phone>
426
+ <Phone>
427
+ <PhoneType>DDI</PhoneType>
428
+ </Phone>
429
+ <Phone>
430
+ <PhoneType>MOBILE</PhoneType>
431
+ </Phone>
432
+ </Phones>
433
+ <UpdatedDateUTC>2009-09-22T01:37:38.937</UpdatedDateUTC>
434
+ <IsSupplier>true</IsSupplier>
435
+ <IsCustomer>false</IsCustomer>
436
+ </Contact>
437
+ <Contact>
438
+ <ContactID>dcb11e4d-910f-4c22-84f9-609020062957</ContactID>
439
+ <ContactStatus>ACTIVE</ContactStatus>
440
+ <Name>Brighton Construction</Name>
441
+ <Addresses>
442
+ <Address>
443
+ <AddressType>STREET</AddressType>
444
+ </Address>
445
+ <Address>
446
+ <AddressType>POBOX</AddressType>
447
+ </Address>
448
+ </Addresses>
449
+ <Phones>
450
+ <Phone>
451
+ <PhoneType>DDI</PhoneType>
452
+ </Phone>
453
+ <Phone>
454
+ <PhoneType>FAX</PhoneType>
455
+ </Phone>
456
+ <Phone>
457
+ <PhoneType>DEFAULT</PhoneType>
458
+ </Phone>
459
+ <Phone>
460
+ <PhoneType>MOBILE</PhoneType>
461
+ </Phone>
462
+ </Phones>
463
+ <UpdatedDateUTC>2009-09-21T23:52:19.39</UpdatedDateUTC>
464
+ <IsSupplier>false</IsSupplier>
465
+ <IsCustomer>true</IsCustomer>
466
+ </Contact>
467
+ <Contact>
468
+ <ContactID>dd46ce46-778c-436f-887a-f12658125379</ContactID>
469
+ <ContactStatus>ACTIVE</ContactStatus>
470
+ <Name>Cafe Net</Name>
471
+ <Addresses>
472
+ <Address>
473
+ <AddressType>STREET</AddressType>
474
+ </Address>
475
+ <Address>
476
+ <AddressType>POBOX</AddressType>
477
+ </Address>
478
+ </Addresses>
479
+ <Phones>
480
+ <Phone>
481
+ <PhoneType>FAX</PhoneType>
482
+ </Phone>
483
+ <Phone>
484
+ <PhoneType>DDI</PhoneType>
485
+ </Phone>
486
+ <Phone>
487
+ <PhoneType>MOBILE</PhoneType>
488
+ </Phone>
489
+ <Phone>
490
+ <PhoneType>DEFAULT</PhoneType>
491
+ </Phone>
492
+ </Phones>
493
+ <UpdatedDateUTC>2009-09-22T01:33:25.033</UpdatedDateUTC>
494
+ <IsSupplier>true</IsSupplier>
495
+ <IsCustomer>false</IsCustomer>
496
+ </Contact>
497
+ <Contact>
498
+ <ContactID>0f41c97f-59d0-4bf1-8246-2095f8a19f6b</ContactID>
499
+ <ContactStatus>ACTIVE</ContactStatus>
500
+ <Name>Capital Cab Co</Name>
501
+ <Addresses>
502
+ <Address>
503
+ <AddressType>POBOX</AddressType>
504
+ </Address>
505
+ <Address>
506
+ <AddressType>STREET</AddressType>
507
+ </Address>
508
+ </Addresses>
509
+ <Phones>
510
+ <Phone>
511
+ <PhoneType>MOBILE</PhoneType>
512
+ </Phone>
513
+ <Phone>
514
+ <PhoneType>DEFAULT</PhoneType>
515
+ </Phone>
516
+ <Phone>
517
+ <PhoneType>FAX</PhoneType>
518
+ </Phone>
519
+ <Phone>
520
+ <PhoneType>DDI</PhoneType>
521
+ </Phone>
522
+ </Phones>
523
+ <UpdatedDateUTC>2009-12-08T23:42:45.023</UpdatedDateUTC>
524
+ <IsSupplier>true</IsSupplier>
525
+ <IsCustomer>false</IsCustomer>
526
+ </Contact>
527
+ <Contact>
528
+ <ContactID>b77f9490-59b1-4f23-95fd-05eabe7bbd5b</ContactID>
529
+ <ContactStatus>ACTIVE</ContactStatus>
530
+ <Name>Capital Holiday Shop</Name>
531
+ <Addresses>
532
+ <Address>
533
+ <AddressType>STREET</AddressType>
534
+ </Address>
535
+ <Address>
536
+ <AddressType>POBOX</AddressType>
537
+ </Address>
538
+ </Addresses>
539
+ <Phones>
540
+ <Phone>
541
+ <PhoneType>DEFAULT</PhoneType>
542
+ </Phone>
543
+ <Phone>
544
+ <PhoneType>FAX</PhoneType>
545
+ </Phone>
546
+ <Phone>
547
+ <PhoneType>DDI</PhoneType>
548
+ </Phone>
549
+ <Phone>
550
+ <PhoneType>MOBILE</PhoneType>
551
+ </Phone>
552
+ </Phones>
553
+ <UpdatedDateUTC>2009-12-08T23:48:42.277</UpdatedDateUTC>
554
+ <IsSupplier>true</IsSupplier>
555
+ <IsCustomer>false</IsCustomer>
556
+ </Contact>
557
+ <Contact>
558
+ <ContactID>2120fe16-c1bd-4a38-b516-7084e057ef23</ContactID>
559
+ <ContactStatus>ACTIVE</ContactStatus>
560
+ <Name>Central City Cellar</Name>
561
+ <Addresses>
562
+ <Address>
563
+ <AddressType>POBOX</AddressType>
564
+ </Address>
565
+ <Address>
566
+ <AddressType>STREET</AddressType>
567
+ </Address>
568
+ </Addresses>
569
+ <Phones>
570
+ <Phone>
571
+ <PhoneType>DEFAULT</PhoneType>
572
+ </Phone>
573
+ <Phone>
574
+ <PhoneType>FAX</PhoneType>
575
+ </Phone>
576
+ <Phone>
577
+ <PhoneType>DDI</PhoneType>
578
+ </Phone>
579
+ <Phone>
580
+ <PhoneType>MOBILE</PhoneType>
581
+ </Phone>
582
+ </Phones>
583
+ <UpdatedDateUTC>2009-09-22T01:02:50.287</UpdatedDateUTC>
584
+ <IsSupplier>true</IsSupplier>
585
+ <IsCustomer>false</IsCustomer>
586
+ </Contact>
587
+ <Contact>
588
+ <ContactID>5274d36d-17b1-4c26-a3ac-b51cc2e39fa4</ContactID>
589
+ <ContactStatus>ACTIVE</ContactStatus>
590
+ <Name>Central Properties</Name>
591
+ <Addresses>
592
+ <Address>
593
+ <AddressType>STREET</AddressType>
594
+ </Address>
595
+ <Address>
596
+ <AddressType>POBOX</AddressType>
597
+ </Address>
598
+ </Addresses>
599
+ <Phones>
600
+ <Phone>
601
+ <PhoneType>MOBILE</PhoneType>
602
+ </Phone>
603
+ <Phone>
604
+ <PhoneType>DDI</PhoneType>
605
+ </Phone>
606
+ <Phone>
607
+ <PhoneType>FAX</PhoneType>
608
+ </Phone>
609
+ <Phone>
610
+ <PhoneType>DEFAULT</PhoneType>
611
+ </Phone>
612
+ </Phones>
613
+ <UpdatedDateUTC>2010-01-20T02:25:36.797</UpdatedDateUTC>
614
+ <IsSupplier>true</IsSupplier>
615
+ <IsCustomer>false</IsCustomer>
616
+ </Contact>
617
+ <Contact>
618
+ <ContactID>025867f1-d741-4d6b-b1af-9ac774b59ba7</ContactID>
619
+ <ContactStatus>ACTIVE</ContactStatus>
620
+ <Name>City Agency</Name>
621
+ <Addresses>
622
+ <Address>
623
+ <AddressType>STREET</AddressType>
624
+ </Address>
625
+ <Address>
626
+ <AddressType>POBOX</AddressType>
627
+ <AddressLine1>L4, CA House
628
+ </AddressLine1>
629
+ <AddressLine2>14 Boulevard Quay</AddressLine2>
630
+ <City>Wellington</City>
631
+ <PostalCode>6012</PostalCode>
632
+ </Address>
633
+ </Addresses>
634
+ <Phones>
635
+ <Phone>
636
+ <PhoneType>DEFAULT</PhoneType>
637
+ <PhoneNumber>4990049</PhoneNumber>
638
+ <PhoneAreaCode>04</PhoneAreaCode>
639
+ </Phone>
640
+ <Phone>
641
+ <PhoneType>DDI</PhoneType>
642
+ </Phone>
643
+ <Phone>
644
+ <PhoneType>MOBILE</PhoneType>
645
+ <PhoneNumber>456789</PhoneNumber>
646
+ <PhoneAreaCode>021</PhoneAreaCode>
647
+ </Phone>
648
+ <Phone>
649
+ <PhoneType>FAX</PhoneType>
650
+ </Phone>
651
+ </Phones>
652
+ <UpdatedDateUTC>2010-03-08T21:06:10.5</UpdatedDateUTC>
653
+ <ContactGroups>
654
+ <ContactGroup>
655
+ <Name>Annual Fees</Name>
656
+ </ContactGroup>
657
+ </ContactGroups>
658
+ <IsSupplier>false</IsSupplier>
659
+ <IsCustomer>true</IsCustomer>
660
+ </Contact>
661
+ <Contact>
662
+ <ContactID>e5a7403a-3e7c-4768-8f77-adbff2f23081</ContactID>
663
+ <ContactStatus>ACTIVE</ContactStatus>
664
+ <Name>Columbus Insurance</Name>
665
+ <Addresses>
666
+ <Address>
667
+ <AddressType>POBOX</AddressType>
668
+ </Address>
669
+ <Address>
670
+ <AddressType>STREET</AddressType>
671
+ </Address>
672
+ </Addresses>
673
+ <Phones>
674
+ <Phone>
675
+ <PhoneType>MOBILE</PhoneType>
676
+ </Phone>
677
+ <Phone>
678
+ <PhoneType>DEFAULT</PhoneType>
679
+ </Phone>
680
+ <Phone>
681
+ <PhoneType>DDI</PhoneType>
682
+ </Phone>
683
+ <Phone>
684
+ <PhoneType>FAX</PhoneType>
685
+ </Phone>
686
+ </Phones>
687
+ <UpdatedDateUTC>2009-09-23T04:19:15.707</UpdatedDateUTC>
688
+ <IsSupplier>true</IsSupplier>
689
+ <IsCustomer>false</IsCustomer>
690
+ </Contact>
691
+ <Contact>
692
+ <ContactID>bf2c0904-1e8b-4d3c-9ecd-55b23a6a2a53</ContactID>
693
+ <ContactStatus>ACTIVE</ContactStatus>
694
+ <Name>Copper.net</Name>
695
+ <Addresses>
696
+ <Address>
697
+ <AddressType>STREET</AddressType>
698
+ </Address>
699
+ <Address>
700
+ <AddressType>POBOX</AddressType>
701
+ </Address>
702
+ </Addresses>
703
+ <Phones>
704
+ <Phone>
705
+ <PhoneType>DEFAULT</PhoneType>
706
+ </Phone>
707
+ <Phone>
708
+ <PhoneType>DDI</PhoneType>
709
+ </Phone>
710
+ <Phone>
711
+ <PhoneType>MOBILE</PhoneType>
712
+ </Phone>
713
+ <Phone>
714
+ <PhoneType>FAX</PhoneType>
715
+ </Phone>
716
+ </Phones>
717
+ <UpdatedDateUTC>2009-09-22T00:44:47.793</UpdatedDateUTC>
718
+ <IsSupplier>true</IsSupplier>
719
+ <IsCustomer>false</IsCustomer>
720
+ </Contact>
721
+ <Contact>
722
+ <ContactID>7b27f554-9d77-4ccb-b056-819669e8f3dd</ContactID>
723
+ <ContactStatus>ACTIVE</ContactStatus>
724
+ <Name>Creative State</Name>
725
+ <Addresses>
726
+ <Address>
727
+ <AddressType>POBOX</AddressType>
728
+ </Address>
729
+ <Address>
730
+ <AddressType>STREET</AddressType>
731
+ </Address>
732
+ </Addresses>
733
+ <Phones>
734
+ <Phone>
735
+ <PhoneType>DDI</PhoneType>
736
+ </Phone>
737
+ <Phone>
738
+ <PhoneType>MOBILE</PhoneType>
739
+ </Phone>
740
+ <Phone>
741
+ <PhoneType>DEFAULT</PhoneType>
742
+ </Phone>
743
+ <Phone>
744
+ <PhoneType>FAX</PhoneType>
745
+ </Phone>
746
+ </Phones>
747
+ <UpdatedDateUTC>2010-01-20T02:13:07.71</UpdatedDateUTC>
748
+ <ContactGroups>
749
+ <ContactGroup>
750
+ <Name>Annual Fees</Name>
751
+ </ContactGroup>
752
+ </ContactGroups>
753
+ <IsSupplier>false</IsSupplier>
754
+ <IsCustomer>true</IsCustomer>
755
+ </Contact>
756
+ <Contact>
757
+ <ContactID>11413d16-cfc3-460f-8139-b732c4819c6a</ContactID>
758
+ <ContactStatus>ACTIVE</ContactStatus>
759
+ <Name>Felix Cooper</Name>
760
+ <Addresses>
761
+ <Address>
762
+ <AddressType>POBOX</AddressType>
763
+ </Address>
764
+ <Address>
765
+ <AddressType>STREET</AddressType>
766
+ </Address>
767
+ </Addresses>
768
+ <Phones>
769
+ <Phone>
770
+ <PhoneType>DEFAULT</PhoneType>
771
+ </Phone>
772
+ <Phone>
773
+ <PhoneType>MOBILE</PhoneType>
774
+ </Phone>
775
+ <Phone>
776
+ <PhoneType>FAX</PhoneType>
777
+ </Phone>
778
+ <Phone>
779
+ <PhoneType>DDI</PhoneType>
780
+ </Phone>
781
+ </Phones>
782
+ <UpdatedDateUTC>2010-01-20T04:15:07.547</UpdatedDateUTC>
783
+ <IsSupplier>true</IsSupplier>
784
+ <IsCustomer>false</IsCustomer>
785
+ </Contact>
786
+ <Contact>
787
+ <ContactID>676b6195-868c-4a80-8f05-5adb5035ab5d</ContactID>
788
+ <ContactStatus>ACTIVE</ContactStatus>
789
+ <Name>Franklin Couriers</Name>
790
+ <Addresses>
791
+ <Address>
792
+ <AddressType>POBOX</AddressType>
793
+ </Address>
794
+ <Address>
795
+ <AddressType>STREET</AddressType>
796
+ </Address>
797
+ </Addresses>
798
+ <Phones>
799
+ <Phone>
800
+ <PhoneType>FAX</PhoneType>
801
+ </Phone>
802
+ <Phone>
803
+ <PhoneType>MOBILE</PhoneType>
804
+ </Phone>
805
+ <Phone>
806
+ <PhoneType>DDI</PhoneType>
807
+ </Phone>
808
+ <Phone>
809
+ <PhoneType>DEFAULT</PhoneType>
810
+ </Phone>
811
+ </Phones>
812
+ <UpdatedDateUTC>2009-09-22T01:07:40.007</UpdatedDateUTC>
813
+ <IsSupplier>true</IsSupplier>
814
+ <IsCustomer>false</IsCustomer>
815
+ </Contact>
816
+ <Contact>
817
+ <ContactID>f8ba2641-ec5b-4883-8062-e0af8186e457</ContactID>
818
+ <ContactStatus>ACTIVE</ContactStatus>
819
+ <Name>Fuel Espresso</Name>
820
+ <Addresses>
821
+ <Address>
822
+ <AddressType>STREET</AddressType>
823
+ </Address>
824
+ <Address>
825
+ <AddressType>POBOX</AddressType>
826
+ </Address>
827
+ </Addresses>
828
+ <Phones>
829
+ <Phone>
830
+ <PhoneType>FAX</PhoneType>
831
+ </Phone>
832
+ <Phone>
833
+ <PhoneType>MOBILE</PhoneType>
834
+ </Phone>
835
+ <Phone>
836
+ <PhoneType>DEFAULT</PhoneType>
837
+ </Phone>
838
+ <Phone>
839
+ <PhoneType>DDI</PhoneType>
840
+ </Phone>
841
+ </Phones>
842
+ <UpdatedDateUTC>2009-09-22T21:09:19.423</UpdatedDateUTC>
843
+ <IsSupplier>false</IsSupplier>
844
+ <IsCustomer>false</IsCustomer>
845
+ </Contact>
846
+ <Contact>
847
+ <ContactID>f3b8cfe1-1960-48ab-8109-23689e1a4b27</ContactID>
848
+ <ContactStatus>ACTIVE</ContactStatus>
849
+ <Name>Fullstop</Name>
850
+ <Addresses>
851
+ <Address>
852
+ <AddressType>POBOX</AddressType>
853
+ <AddressLine1>cnr Harris &amp; Mayor Sts
854
+ </AddressLine1>
855
+ <AddressLine2>North End</AddressLine2>
856
+ <City>Ridgeway</City>
857
+ <PostalCode>90678</PostalCode>
858
+ </Address>
859
+ <Address>
860
+ <AddressType>STREET</AddressType>
861
+ </Address>
862
+ </Addresses>
863
+ <Phones>
864
+ <Phone>
865
+ <PhoneType>FAX</PhoneType>
866
+ </Phone>
867
+ <Phone>
868
+ <PhoneType>DDI</PhoneType>
869
+ </Phone>
870
+ <Phone>
871
+ <PhoneType>DEFAULT</PhoneType>
872
+ <PhoneNumber>1234567</PhoneNumber>
873
+ <PhoneAreaCode>04</PhoneAreaCode>
874
+ </Phone>
875
+ <Phone>
876
+ <PhoneType>MOBILE</PhoneType>
877
+ <PhoneNumber>456789</PhoneNumber>
878
+ <PhoneAreaCode>021</PhoneAreaCode>
879
+ </Phone>
880
+ </Phones>
881
+ <UpdatedDateUTC>2010-03-08T21:08:16.487</UpdatedDateUTC>
882
+ <IsSupplier>false</IsSupplier>
883
+ <IsCustomer>true</IsCustomer>
884
+ </Contact>
885
+ <Contact>
886
+ <ContactID>883b2b63-738c-4387-92b6-a4fa367a8eea</ContactID>
887
+ <ContactStatus>ACTIVE</ContactStatus>
888
+ <Name>Gibson Media Group</Name>
889
+ <Addresses>
890
+ <Address>
891
+ <AddressType>POBOX</AddressType>
892
+ </Address>
893
+ <Address>
894
+ <AddressType>STREET</AddressType>
895
+ </Address>
896
+ </Addresses>
897
+ <Phones>
898
+ <Phone>
899
+ <PhoneType>DEFAULT</PhoneType>
900
+ </Phone>
901
+ <Phone>
902
+ <PhoneType>MOBILE</PhoneType>
903
+ </Phone>
904
+ <Phone>
905
+ <PhoneType>FAX</PhoneType>
906
+ </Phone>
907
+ <Phone>
908
+ <PhoneType>DDI</PhoneType>
909
+ </Phone>
910
+ </Phones>
911
+ <UpdatedDateUTC>2009-09-22T00:50:57.477</UpdatedDateUTC>
912
+ <IsSupplier>true</IsSupplier>
913
+ <IsCustomer>false</IsCustomer>
914
+ </Contact>
915
+ <Contact>
916
+ <ContactID>3b0bd570-a770-41fc-aab9-725a47370103</ContactID>
917
+ <ContactStatus>ACTIVE</ContactStatus>
918
+ <Name>Global Liners</Name>
919
+ <Addresses>
920
+ <Address>
921
+ <AddressType>POBOX</AddressType>
922
+ </Address>
923
+ <Address>
924
+ <AddressType>STREET</AddressType>
925
+ </Address>
926
+ </Addresses>
927
+ <Phones>
928
+ <Phone>
929
+ <PhoneType>FAX</PhoneType>
930
+ </Phone>
931
+ <Phone>
932
+ <PhoneType>DDI</PhoneType>
933
+ </Phone>
934
+ <Phone>
935
+ <PhoneType>DEFAULT</PhoneType>
936
+ </Phone>
937
+ <Phone>
938
+ <PhoneType>MOBILE</PhoneType>
939
+ </Phone>
940
+ </Phones>
941
+ <UpdatedDateUTC>2009-09-21T23:31:18.003</UpdatedDateUTC>
942
+ <IsSupplier>false</IsSupplier>
943
+ <IsCustomer>true</IsCustomer>
944
+ </Contact>
945
+ <Contact>
946
+ <ContactID>49d30da8-c4ca-4c1d-9fc3-6ac9fd061d6e</ContactID>
947
+ <ContactStatus>ACTIVE</ContactStatus>
948
+ <Name>Green Cabs</Name>
949
+ <Addresses>
950
+ <Address>
951
+ <AddressType>POBOX</AddressType>
952
+ </Address>
953
+ <Address>
954
+ <AddressType>STREET</AddressType>
955
+ </Address>
956
+ </Addresses>
957
+ <Phones>
958
+ <Phone>
959
+ <PhoneType>FAX</PhoneType>
960
+ </Phone>
961
+ <Phone>
962
+ <PhoneType>MOBILE</PhoneType>
963
+ </Phone>
964
+ <Phone>
965
+ <PhoneType>DEFAULT</PhoneType>
966
+ </Phone>
967
+ <Phone>
968
+ <PhoneType>DDI</PhoneType>
969
+ </Phone>
970
+ </Phones>
971
+ <UpdatedDateUTC>2009-09-22T20:55:55.783</UpdatedDateUTC>
972
+ <IsSupplier>false</IsSupplier>
973
+ <IsCustomer>false</IsCustomer>
974
+ </Contact>
975
+ <Contact>
976
+ <ContactID>74fed0b5-e532-45d1-bcb9-ae6c47c7bef7</ContactID>
977
+ <ContactStatus>ACTIVE</ContactStatus>
978
+ <Name>Hot Chilly</Name>
979
+ <Addresses>
980
+ <Address>
981
+ <AddressType>POBOX</AddressType>
982
+ </Address>
983
+ <Address>
984
+ <AddressType>STREET</AddressType>
985
+ </Address>
986
+ </Addresses>
987
+ <Phones>
988
+ <Phone>
989
+ <PhoneType>FAX</PhoneType>
990
+ </Phone>
991
+ <Phone>
992
+ <PhoneType>MOBILE</PhoneType>
993
+ </Phone>
994
+ <Phone>
995
+ <PhoneType>DEFAULT</PhoneType>
996
+ </Phone>
997
+ <Phone>
998
+ <PhoneType>DDI</PhoneType>
999
+ </Phone>
1000
+ </Phones>
1001
+ <UpdatedDateUTC>2009-09-22T20:36:39.877</UpdatedDateUTC>
1002
+ <IsSupplier>true</IsSupplier>
1003
+ <IsCustomer>false</IsCustomer>
1004
+ </Contact>
1005
+ <Contact>
1006
+ <ContactID>37555c23-372d-4b14-b3b3-b95b329c320e</ContactID>
1007
+ <ContactStatus>ACTIVE</ContactStatus>
1008
+ <Name>Inland Revenue</Name>
1009
+ <Addresses>
1010
+ <Address>
1011
+ <AddressType>POBOX</AddressType>
1012
+ </Address>
1013
+ <Address>
1014
+ <AddressType>STREET</AddressType>
1015
+ </Address>
1016
+ </Addresses>
1017
+ <Phones>
1018
+ <Phone>
1019
+ <PhoneType>MOBILE</PhoneType>
1020
+ </Phone>
1021
+ <Phone>
1022
+ <PhoneType>DDI</PhoneType>
1023
+ </Phone>
1024
+ <Phone>
1025
+ <PhoneType>FAX</PhoneType>
1026
+ </Phone>
1027
+ <Phone>
1028
+ <PhoneType>DEFAULT</PhoneType>
1029
+ </Phone>
1030
+ </Phones>
1031
+ <UpdatedDateUTC>2009-12-09T04:36:05.433</UpdatedDateUTC>
1032
+ <IsSupplier>true</IsSupplier>
1033
+ <IsCustomer>false</IsCustomer>
1034
+ </Contact>
1035
+ <Contact>
1036
+ <ContactID>53b50c37-306e-487f-b3c7-8e684e74f073</ContactID>
1037
+ <ContactStatus>ACTIVE</ContactStatus>
1038
+ <Name>Island Road Studio</Name>
1039
+ <Addresses>
1040
+ <Address>
1041
+ <AddressType>POBOX</AddressType>
1042
+ </Address>
1043
+ <Address>
1044
+ <AddressType>STREET</AddressType>
1045
+ </Address>
1046
+ </Addresses>
1047
+ <Phones>
1048
+ <Phone>
1049
+ <PhoneType>FAX</PhoneType>
1050
+ </Phone>
1051
+ <Phone>
1052
+ <PhoneType>MOBILE</PhoneType>
1053
+ </Phone>
1054
+ <Phone>
1055
+ <PhoneType>DDI</PhoneType>
1056
+ </Phone>
1057
+ <Phone>
1058
+ <PhoneType>DEFAULT</PhoneType>
1059
+ </Phone>
1060
+ </Phones>
1061
+ <UpdatedDateUTC>2010-01-20T02:11:30.6</UpdatedDateUTC>
1062
+ <ContactGroups>
1063
+ <ContactGroup>
1064
+ <Name>Annual Fees</Name>
1065
+ </ContactGroup>
1066
+ </ContactGroups>
1067
+ <IsSupplier>false</IsSupplier>
1068
+ <IsCustomer>true</IsCustomer>
1069
+ </Contact>
1070
+ <Contact>
1071
+ <ContactID>539ca901-3448-418b-af37-c9a529016cbe</ContactID>
1072
+ <ContactStatus>ACTIVE</ContactStatus>
1073
+ <Name>Jervois Java</Name>
1074
+ <Addresses>
1075
+ <Address>
1076
+ <AddressType>POBOX</AddressType>
1077
+ </Address>
1078
+ <Address>
1079
+ <AddressType>STREET</AddressType>
1080
+ </Address>
1081
+ </Addresses>
1082
+ <Phones>
1083
+ <Phone>
1084
+ <PhoneType>DDI</PhoneType>
1085
+ </Phone>
1086
+ <Phone>
1087
+ <PhoneType>FAX</PhoneType>
1088
+ </Phone>
1089
+ <Phone>
1090
+ <PhoneType>MOBILE</PhoneType>
1091
+ </Phone>
1092
+ <Phone>
1093
+ <PhoneType>DEFAULT</PhoneType>
1094
+ </Phone>
1095
+ </Phones>
1096
+ <UpdatedDateUTC>2009-09-22T20:55:10.097</UpdatedDateUTC>
1097
+ <IsSupplier>false</IsSupplier>
1098
+ <IsCustomer>false</IsCustomer>
1099
+ </Contact>
1100
+ <Contact>
1101
+ <ContactID>065f3fa6-b923-40b7-80a4-5565ec669738</ContactID>
1102
+ <ContactStatus>ACTIVE</ContactStatus>
1103
+ <Name>Kensington Developments</Name>
1104
+ <Addresses>
1105
+ <Address>
1106
+ <AddressType>STREET</AddressType>
1107
+ </Address>
1108
+ <Address>
1109
+ <AddressType>POBOX</AddressType>
1110
+ </Address>
1111
+ </Addresses>
1112
+ <Phones>
1113
+ <Phone>
1114
+ <PhoneType>DEFAULT</PhoneType>
1115
+ </Phone>
1116
+ <Phone>
1117
+ <PhoneType>DDI</PhoneType>
1118
+ </Phone>
1119
+ <Phone>
1120
+ <PhoneType>MOBILE</PhoneType>
1121
+ </Phone>
1122
+ <Phone>
1123
+ <PhoneType>FAX</PhoneType>
1124
+ </Phone>
1125
+ </Phones>
1126
+ <UpdatedDateUTC>2009-09-22T00:13:59.813</UpdatedDateUTC>
1127
+ <ContactGroups>
1128
+ <ContactGroup>
1129
+ <Name>Annual Fees</Name>
1130
+ </ContactGroup>
1131
+ </ContactGroups>
1132
+ <IsSupplier>false</IsSupplier>
1133
+ <IsCustomer>true</IsCustomer>
1134
+ </Contact>
1135
+ <Contact>
1136
+ <ContactID>53d87a1a-c790-4b2f-9b93-689d696acffb</ContactID>
1137
+ <ContactStatus>ACTIVE</ContactStatus>
1138
+ <Name>KRPZ Radio</Name>
1139
+ <Addresses>
1140
+ <Address>
1141
+ <AddressType>POBOX</AddressType>
1142
+ <AddressLine1>L10, Broadcasting House
1143
+ </AddressLine1>
1144
+ <AddressLine2>1 Parliament Drive</AddressLine2>
1145
+ <City>Ridgeway</City>
1146
+ <PostalCode>90678</PostalCode>
1147
+ </Address>
1148
+ <Address>
1149
+ <AddressType>STREET</AddressType>
1150
+ </Address>
1151
+ </Addresses>
1152
+ <Phones>
1153
+ <Phone>
1154
+ <PhoneType>DDI</PhoneType>
1155
+ </Phone>
1156
+ <Phone>
1157
+ <PhoneType>FAX</PhoneType>
1158
+ </Phone>
1159
+ <Phone>
1160
+ <PhoneType>MOBILE</PhoneType>
1161
+ </Phone>
1162
+ <Phone>
1163
+ <PhoneType>DEFAULT</PhoneType>
1164
+ <PhoneNumber>4414000</PhoneNumber>
1165
+ <PhoneAreaCode>0800</PhoneAreaCode>
1166
+ </Phone>
1167
+ </Phones>
1168
+ <UpdatedDateUTC>2010-03-08T21:09:34.643</UpdatedDateUTC>
1169
+ <IsSupplier>false</IsSupplier>
1170
+ <IsCustomer>true</IsCustomer>
1171
+ </Contact>
1172
+ <Contact>
1173
+ <ContactID>06638157-fdfa-47f4-91d0-875b5f5c18c6</ContactID>
1174
+ <ContactStatus>ACTIVE</ContactStatus>
1175
+ <Name>Marine Systems</Name>
1176
+ <Addresses>
1177
+ <Address>
1178
+ <AddressType>POBOX</AddressType>
1179
+ </Address>
1180
+ <Address>
1181
+ <AddressType>STREET</AddressType>
1182
+ </Address>
1183
+ </Addresses>
1184
+ <Phones>
1185
+ <Phone>
1186
+ <PhoneType>DEFAULT</PhoneType>
1187
+ </Phone>
1188
+ <Phone>
1189
+ <PhoneType>MOBILE</PhoneType>
1190
+ </Phone>
1191
+ <Phone>
1192
+ <PhoneType>FAX</PhoneType>
1193
+ </Phone>
1194
+ <Phone>
1195
+ <PhoneType>DDI</PhoneType>
1196
+ </Phone>
1197
+ </Phones>
1198
+ <UpdatedDateUTC>2009-12-08T21:04:57.807</UpdatedDateUTC>
1199
+ <IsSupplier>false</IsSupplier>
1200
+ <IsCustomer>true</IsCustomer>
1201
+ </Contact>
1202
+ <Contact>
1203
+ <ContactID>9097e839-270a-42bb-a2e4-fd14d8e18a9f</ContactID>
1204
+ <ContactStatus>ACTIVE</ContactStatus>
1205
+ <Name>Martin Hudson</Name>
1206
+ <Addresses>
1207
+ <Address>
1208
+ <AddressType>STREET</AddressType>
1209
+ </Address>
1210
+ <Address>
1211
+ <AddressType>POBOX</AddressType>
1212
+ </Address>
1213
+ </Addresses>
1214
+ <Phones>
1215
+ <Phone>
1216
+ <PhoneType>MOBILE</PhoneType>
1217
+ </Phone>
1218
+ <Phone>
1219
+ <PhoneType>DDI</PhoneType>
1220
+ </Phone>
1221
+ <Phone>
1222
+ <PhoneType>DEFAULT</PhoneType>
1223
+ </Phone>
1224
+ <Phone>
1225
+ <PhoneType>FAX</PhoneType>
1226
+ </Phone>
1227
+ </Phones>
1228
+ <UpdatedDateUTC>2010-01-20T04:18:33.363</UpdatedDateUTC>
1229
+ <IsSupplier>true</IsSupplier>
1230
+ <IsCustomer>false</IsCustomer>
1231
+ </Contact>
1232
+ <Contact>
1233
+ <ContactID>8c609fb2-cf98-4184-bab5-23113337ad31</ContactID>
1234
+ <ContactStatus>ACTIVE</ContactStatus>
1235
+ <Name>Ministry of Economic Development (MED)</Name>
1236
+ <Addresses>
1237
+ <Address>
1238
+ <AddressType>STREET</AddressType>
1239
+ </Address>
1240
+ <Address>
1241
+ <AddressType>POBOX</AddressType>
1242
+ </Address>
1243
+ </Addresses>
1244
+ <Phones>
1245
+ <Phone>
1246
+ <PhoneType>DEFAULT</PhoneType>
1247
+ </Phone>
1248
+ <Phone>
1249
+ <PhoneType>DDI</PhoneType>
1250
+ </Phone>
1251
+ <Phone>
1252
+ <PhoneType>FAX</PhoneType>
1253
+ </Phone>
1254
+ <Phone>
1255
+ <PhoneType>MOBILE</PhoneType>
1256
+ </Phone>
1257
+ </Phones>
1258
+ <UpdatedDateUTC>2009-09-21T23:35:10.48</UpdatedDateUTC>
1259
+ <IsSupplier>true</IsSupplier>
1260
+ <IsCustomer>true</IsCustomer>
1261
+ </Contact>
1262
+ <Contact>
1263
+ <ContactID>45a0a8f1-4194-4627-a4a8-16d07a2a121c</ContactID>
1264
+ <ContactStatus>ACTIVE</ContactStatus>
1265
+ <Name>Miss Sparkle Cleaning Company</Name>
1266
+ <Addresses>
1267
+ <Address>
1268
+ <AddressType>POBOX</AddressType>
1269
+ </Address>
1270
+ <Address>
1271
+ <AddressType>STREET</AddressType>
1272
+ </Address>
1273
+ </Addresses>
1274
+ <Phones>
1275
+ <Phone>
1276
+ <PhoneType>DEFAULT</PhoneType>
1277
+ </Phone>
1278
+ <Phone>
1279
+ <PhoneType>MOBILE</PhoneType>
1280
+ </Phone>
1281
+ <Phone>
1282
+ <PhoneType>FAX</PhoneType>
1283
+ </Phone>
1284
+ <Phone>
1285
+ <PhoneType>DDI</PhoneType>
1286
+ </Phone>
1287
+ </Phones>
1288
+ <UpdatedDateUTC>2009-09-22T01:25:46.03</UpdatedDateUTC>
1289
+ <IsSupplier>true</IsSupplier>
1290
+ <IsCustomer>false</IsCustomer>
1291
+ </Contact>
1292
+ <Contact>
1293
+ <ContactID>3cceb311-d92d-4fff-919f-6e1ca7da019c</ContactID>
1294
+ <ContactStatus>ACTIVE</ContactStatus>
1295
+ <Name>Monica Willis</Name>
1296
+ <Addresses>
1297
+ <Address>
1298
+ <AddressType>POBOX</AddressType>
1299
+ </Address>
1300
+ <Address>
1301
+ <AddressType>STREET</AddressType>
1302
+ </Address>
1303
+ </Addresses>
1304
+ <Phones>
1305
+ <Phone>
1306
+ <PhoneType>DDI</PhoneType>
1307
+ </Phone>
1308
+ <Phone>
1309
+ <PhoneType>DEFAULT</PhoneType>
1310
+ </Phone>
1311
+ <Phone>
1312
+ <PhoneType>MOBILE</PhoneType>
1313
+ </Phone>
1314
+ <Phone>
1315
+ <PhoneType>FAX</PhoneType>
1316
+ </Phone>
1317
+ </Phones>
1318
+ <UpdatedDateUTC>2009-09-22T01:47:07.39</UpdatedDateUTC>
1319
+ <IsSupplier>false</IsSupplier>
1320
+ <IsCustomer>true</IsCustomer>
1321
+ </Contact>
1322
+ <Contact>
1323
+ <ContactID>02ebd127-6fb3-4c57-9057-16d2665a264a</ContactID>
1324
+ <ContactStatus>ACTIVE</ContactStatus>
1325
+ <Name>Net Guide</Name>
1326
+ <Addresses>
1327
+ <Address>
1328
+ <AddressType>POBOX</AddressType>
1329
+ </Address>
1330
+ <Address>
1331
+ <AddressType>STREET</AddressType>
1332
+ </Address>
1333
+ </Addresses>
1334
+ <Phones>
1335
+ <Phone>
1336
+ <PhoneType>FAX</PhoneType>
1337
+ </Phone>
1338
+ <Phone>
1339
+ <PhoneType>MOBILE</PhoneType>
1340
+ </Phone>
1341
+ <Phone>
1342
+ <PhoneType>DEFAULT</PhoneType>
1343
+ </Phone>
1344
+ <Phone>
1345
+ <PhoneType>DDI</PhoneType>
1346
+ </Phone>
1347
+ </Phones>
1348
+ <UpdatedDateUTC>2009-09-21T23:05:35.71</UpdatedDateUTC>
1349
+ <IsSupplier>true</IsSupplier>
1350
+ <IsCustomer>true</IsCustomer>
1351
+ </Contact>
1352
+ <Contact>
1353
+ <ContactID>79517ddc-512a-47f4-8d4f-33a879b97b08</ContactID>
1354
+ <ContactStatus>ACTIVE</ContactStatus>
1355
+ <Name>New World</Name>
1356
+ <Addresses>
1357
+ <Address>
1358
+ <AddressType>STREET</AddressType>
1359
+ </Address>
1360
+ <Address>
1361
+ <AddressType>POBOX</AddressType>
1362
+ </Address>
1363
+ </Addresses>
1364
+ <Phones>
1365
+ <Phone>
1366
+ <PhoneType>MOBILE</PhoneType>
1367
+ </Phone>
1368
+ <Phone>
1369
+ <PhoneType>DEFAULT</PhoneType>
1370
+ </Phone>
1371
+ <Phone>
1372
+ <PhoneType>DDI</PhoneType>
1373
+ </Phone>
1374
+ <Phone>
1375
+ <PhoneType>FAX</PhoneType>
1376
+ </Phone>
1377
+ </Phones>
1378
+ <UpdatedDateUTC>2009-09-22T01:30:49.017</UpdatedDateUTC>
1379
+ <IsSupplier>true</IsSupplier>
1380
+ <IsCustomer>false</IsCustomer>
1381
+ </Contact>
1382
+ <Contact>
1383
+ <ContactID>f67d9c6b-f36f-470f-90f3-3e1cd0e0cb29</ContactID>
1384
+ <ContactStatus>ACTIVE</ContactStatus>
1385
+ <Name>Office Supplies Company</Name>
1386
+ <Addresses>
1387
+ <Address>
1388
+ <AddressType>STREET</AddressType>
1389
+ </Address>
1390
+ <Address>
1391
+ <AddressType>POBOX</AddressType>
1392
+ </Address>
1393
+ </Addresses>
1394
+ <Phones>
1395
+ <Phone>
1396
+ <PhoneType>FAX</PhoneType>
1397
+ </Phone>
1398
+ <Phone>
1399
+ <PhoneType>MOBILE</PhoneType>
1400
+ </Phone>
1401
+ <Phone>
1402
+ <PhoneType>DEFAULT</PhoneType>
1403
+ </Phone>
1404
+ <Phone>
1405
+ <PhoneType>DDI</PhoneType>
1406
+ </Phone>
1407
+ </Phones>
1408
+ <UpdatedDateUTC>2009-09-23T03:07:56.457</UpdatedDateUTC>
1409
+ <IsSupplier>true</IsSupplier>
1410
+ <IsCustomer>false</IsCustomer>
1411
+ </Contact>
1412
+ <Contact>
1413
+ <ContactID>4148c663-62de-4c11-9bdc-34d794c0b509</ContactID>
1414
+ <ContactStatus>ACTIVE</ContactStatus>
1415
+ <Name>Orange Kitchen</Name>
1416
+ <Addresses>
1417
+ <Address>
1418
+ <AddressType>STREET</AddressType>
1419
+ </Address>
1420
+ <Address>
1421
+ <AddressType>POBOX</AddressType>
1422
+ </Address>
1423
+ </Addresses>
1424
+ <Phones>
1425
+ <Phone>
1426
+ <PhoneType>DDI</PhoneType>
1427
+ </Phone>
1428
+ <Phone>
1429
+ <PhoneType>FAX</PhoneType>
1430
+ </Phone>
1431
+ <Phone>
1432
+ <PhoneType>DEFAULT</PhoneType>
1433
+ </Phone>
1434
+ <Phone>
1435
+ <PhoneType>MOBILE</PhoneType>
1436
+ </Phone>
1437
+ </Phones>
1438
+ <UpdatedDateUTC>2009-09-22T01:02:15.783</UpdatedDateUTC>
1439
+ <IsSupplier>true</IsSupplier>
1440
+ <IsCustomer>false</IsCustomer>
1441
+ </Contact>
1442
+ <Contact>
1443
+ <ContactID>b59ab4d8-bd9d-4832-8fed-68516e37c462</ContactID>
1444
+ <ContactStatus>ACTIVE</ContactStatus>
1445
+ <Name>Orlena Greenville</Name>
1446
+ <Addresses>
1447
+ <Address>
1448
+ <AddressType>POBOX</AddressType>
1449
+ </Address>
1450
+ <Address>
1451
+ <AddressType>STREET</AddressType>
1452
+ </Address>
1453
+ </Addresses>
1454
+ <Phones>
1455
+ <Phone>
1456
+ <PhoneType>DEFAULT</PhoneType>
1457
+ </Phone>
1458
+ <Phone>
1459
+ <PhoneType>DDI</PhoneType>
1460
+ </Phone>
1461
+ <Phone>
1462
+ <PhoneType>FAX</PhoneType>
1463
+ </Phone>
1464
+ <Phone>
1465
+ <PhoneType>MOBILE</PhoneType>
1466
+ </Phone>
1467
+ </Phones>
1468
+ <UpdatedDateUTC>2010-01-20T04:16:25.527</UpdatedDateUTC>
1469
+ <IsSupplier>true</IsSupplier>
1470
+ <IsCustomer>false</IsCustomer>
1471
+ </Contact>
1472
+ <Contact>
1473
+ <ContactID>9f6b187b-3ee8-414c-af4d-e5c0d4fc20b7</ContactID>
1474
+ <ContactStatus>ACTIVE</ContactStatus>
1475
+ <Name>Park Regal</Name>
1476
+ <Addresses>
1477
+ <Address>
1478
+ <AddressType>STREET</AddressType>
1479
+ </Address>
1480
+ <Address>
1481
+ <AddressType>POBOX</AddressType>
1482
+ </Address>
1483
+ </Addresses>
1484
+ <Phones>
1485
+ <Phone>
1486
+ <PhoneType>MOBILE</PhoneType>
1487
+ </Phone>
1488
+ <Phone>
1489
+ <PhoneType>DDI</PhoneType>
1490
+ </Phone>
1491
+ <Phone>
1492
+ <PhoneType>FAX</PhoneType>
1493
+ </Phone>
1494
+ <Phone>
1495
+ <PhoneType>DEFAULT</PhoneType>
1496
+ </Phone>
1497
+ </Phones>
1498
+ <UpdatedDateUTC>2009-09-21T23:56:28.73</UpdatedDateUTC>
1499
+ <IsSupplier>false</IsSupplier>
1500
+ <IsCustomer>true</IsCustomer>
1501
+ </Contact>
1502
+ <Contact>
1503
+ <ContactID>6b3c734b-01c6-47ea-aa75-e1f82d6d628a</ContactID>
1504
+ <ContactStatus>ACTIVE</ContactStatus>
1505
+ <Name>Party Hire</Name>
1506
+ <Addresses>
1507
+ <Address>
1508
+ <AddressType>POBOX</AddressType>
1509
+ </Address>
1510
+ <Address>
1511
+ <AddressType>STREET</AddressType>
1512
+ </Address>
1513
+ </Addresses>
1514
+ <Phones>
1515
+ <Phone>
1516
+ <PhoneType>FAX</PhoneType>
1517
+ </Phone>
1518
+ <Phone>
1519
+ <PhoneType>DDI</PhoneType>
1520
+ </Phone>
1521
+ <Phone>
1522
+ <PhoneType>MOBILE</PhoneType>
1523
+ </Phone>
1524
+ <Phone>
1525
+ <PhoneType>DEFAULT</PhoneType>
1526
+ </Phone>
1527
+ </Phones>
1528
+ <UpdatedDateUTC>2009-09-22T01:01:40.53</UpdatedDateUTC>
1529
+ <IsSupplier>true</IsSupplier>
1530
+ <IsCustomer>false</IsCustomer>
1531
+ </Contact>
1532
+ <Contact>
1533
+ <ContactID>10aaf041-57ef-4bb5-9f2d-e9a32cf2915d</ContactID>
1534
+ <ContactStatus>ACTIVE</ContactStatus>
1535
+ <Name>PC Wonder</Name>
1536
+ <Addresses>
1537
+ <Address>
1538
+ <AddressType>STREET</AddressType>
1539
+ </Address>
1540
+ <Address>
1541
+ <AddressType>POBOX</AddressType>
1542
+ </Address>
1543
+ </Addresses>
1544
+ <Phones>
1545
+ <Phone>
1546
+ <PhoneType>FAX</PhoneType>
1547
+ </Phone>
1548
+ <Phone>
1549
+ <PhoneType>DEFAULT</PhoneType>
1550
+ </Phone>
1551
+ <Phone>
1552
+ <PhoneType>MOBILE</PhoneType>
1553
+ </Phone>
1554
+ <Phone>
1555
+ <PhoneType>DDI</PhoneType>
1556
+ </Phone>
1557
+ </Phones>
1558
+ <UpdatedDateUTC>2009-09-22T22:11:47.47</UpdatedDateUTC>
1559
+ <IsSupplier>true</IsSupplier>
1560
+ <IsCustomer>false</IsCustomer>
1561
+ </Contact>
1562
+ <Contact>
1563
+ <ContactID>d987a9c0-1b93-42e1-95e0-0dd855f45ae9</ContactID>
1564
+ <ContactStatus>ACTIVE</ContactStatus>
1565
+ <Name>Pronto Print</Name>
1566
+ <Addresses>
1567
+ <Address>
1568
+ <AddressType>POBOX</AddressType>
1569
+ </Address>
1570
+ <Address>
1571
+ <AddressType>STREET</AddressType>
1572
+ </Address>
1573
+ </Addresses>
1574
+ <Phones>
1575
+ <Phone>
1576
+ <PhoneType>DDI</PhoneType>
1577
+ </Phone>
1578
+ <Phone>
1579
+ <PhoneType>MOBILE</PhoneType>
1580
+ </Phone>
1581
+ <Phone>
1582
+ <PhoneType>DEFAULT</PhoneType>
1583
+ </Phone>
1584
+ <Phone>
1585
+ <PhoneType>FAX</PhoneType>
1586
+ </Phone>
1587
+ </Phones>
1588
+ <UpdatedDateUTC>2009-09-22T01:11:35.72</UpdatedDateUTC>
1589
+ <IsSupplier>true</IsSupplier>
1590
+ <IsCustomer>false</IsCustomer>
1591
+ </Contact>
1592
+ <Contact>
1593
+ <ContactID>03dca51c-3cef-4548-8e0c-94da613e76bc</ContactID>
1594
+ <ContactStatus>ACTIVE</ContactStatus>
1595
+ <Name>Qantas</Name>
1596
+ <Addresses>
1597
+ <Address>
1598
+ <AddressType>POBOX</AddressType>
1599
+ </Address>
1600
+ <Address>
1601
+ <AddressType>STREET</AddressType>
1602
+ </Address>
1603
+ </Addresses>
1604
+ <Phones>
1605
+ <Phone>
1606
+ <PhoneType>FAX</PhoneType>
1607
+ </Phone>
1608
+ <Phone>
1609
+ <PhoneType>DDI</PhoneType>
1610
+ </Phone>
1611
+ <Phone>
1612
+ <PhoneType>MOBILE</PhoneType>
1613
+ </Phone>
1614
+ <Phone>
1615
+ <PhoneType>DEFAULT</PhoneType>
1616
+ </Phone>
1617
+ </Phones>
1618
+ <UpdatedDateUTC>2009-12-08T23:53:30.343</UpdatedDateUTC>
1619
+ <IsSupplier>true</IsSupplier>
1620
+ <IsCustomer>false</IsCustomer>
1621
+ </Contact>
1622
+ <Contact>
1623
+ <ContactID>4c76ffb5-02e7-47c5-9a86-b0a5a35d1682</ContactID>
1624
+ <ContactStatus>ACTIVE</ContactStatus>
1625
+ <Name>Red House Reads</Name>
1626
+ <Addresses>
1627
+ <Address>
1628
+ <AddressType>STREET</AddressType>
1629
+ </Address>
1630
+ <Address>
1631
+ <AddressType>POBOX</AddressType>
1632
+ <AddressLine1>L1, 49 Lakeshore Quay</AddressLine1>
1633
+ <City>Ridgeway</City>
1634
+ <PostalCode>904458</PostalCode>
1635
+ </Address>
1636
+ </Addresses>
1637
+ <Phones>
1638
+ <Phone>
1639
+ <PhoneType>DDI</PhoneType>
1640
+ </Phone>
1641
+ <Phone>
1642
+ <PhoneType>DEFAULT</PhoneType>
1643
+ <PhoneNumber>8915600</PhoneNumber>
1644
+ <PhoneAreaCode>04</PhoneAreaCode>
1645
+ </Phone>
1646
+ <Phone>
1647
+ <PhoneType>MOBILE</PhoneType>
1648
+ <PhoneNumber>123456</PhoneNumber>
1649
+ <PhoneAreaCode>21</PhoneAreaCode>
1650
+ </Phone>
1651
+ <Phone>
1652
+ <PhoneType>FAX</PhoneType>
1653
+ </Phone>
1654
+ </Phones>
1655
+ <UpdatedDateUTC>2010-03-08T21:01:24.733</UpdatedDateUTC>
1656
+ <IsSupplier>false</IsSupplier>
1657
+ <IsCustomer>true</IsCustomer>
1658
+ </Contact>
1659
+ <Contact>
1660
+ <ContactID>b9a772bb-e5b2-4811-9954-d7ac37c5afad</ContactID>
1661
+ <ContactStatus>ACTIVE</ContactStatus>
1662
+ <Name>Ridgeway University</Name>
1663
+ <Addresses>
1664
+ <Address>
1665
+ <AddressType>STREET</AddressType>
1666
+ </Address>
1667
+ <Address>
1668
+ <AddressType>POBOX</AddressType>
1669
+ <AddressLine1>Finance Dept
1670
+ </AddressLine1>
1671
+ <AddressLine2>P O Box 89 114</AddressLine2>
1672
+ <City>Ridgeway</City>
1673
+ <PostalCode>98001</PostalCode>
1674
+ </Address>
1675
+ </Addresses>
1676
+ <Phones>
1677
+ <Phone>
1678
+ <PhoneType>DDI</PhoneType>
1679
+ </Phone>
1680
+ <Phone>
1681
+ <PhoneType>MOBILE</PhoneType>
1682
+ </Phone>
1683
+ <Phone>
1684
+ <PhoneType>DEFAULT</PhoneType>
1685
+ <PhoneNumber>4389376</PhoneNumber>
1686
+ <PhoneAreaCode>0800</PhoneAreaCode>
1687
+ </Phone>
1688
+ <Phone>
1689
+ <PhoneType>FAX</PhoneType>
1690
+ </Phone>
1691
+ </Phones>
1692
+ <UpdatedDateUTC>2010-03-08T21:05:16.86</UpdatedDateUTC>
1693
+ <IsSupplier>false</IsSupplier>
1694
+ <IsCustomer>true</IsCustomer>
1695
+ </Contact>
1696
+ <Contact>
1697
+ <ContactID>77f3737e-a274-495a-91c3-c8a54c8ad9e0</ContactID>
1698
+ <ContactStatus>ACTIVE</ContactStatus>
1699
+ <Name>Saatchi</Name>
1700
+ <Addresses>
1701
+ <Address>
1702
+ <AddressType>STREET</AddressType>
1703
+ </Address>
1704
+ <Address>
1705
+ <AddressType>POBOX</AddressType>
1706
+ </Address>
1707
+ </Addresses>
1708
+ <Phones>
1709
+ <Phone>
1710
+ <PhoneType>FAX</PhoneType>
1711
+ </Phone>
1712
+ <Phone>
1713
+ <PhoneType>MOBILE</PhoneType>
1714
+ </Phone>
1715
+ <Phone>
1716
+ <PhoneType>DDI</PhoneType>
1717
+ </Phone>
1718
+ <Phone>
1719
+ <PhoneType>DEFAULT</PhoneType>
1720
+ </Phone>
1721
+ </Phones>
1722
+ <UpdatedDateUTC>2009-09-22T20:43:30.517</UpdatedDateUTC>
1723
+ <IsSupplier>true</IsSupplier>
1724
+ <IsCustomer>false</IsCustomer>
1725
+ </Contact>
1726
+ <Contact>
1727
+ <ContactID>eb44054f-b00a-4085-b953-ffb331e7f013</ContactID>
1728
+ <ContactStatus>ACTIVE</ContactStatus>
1729
+ <Name>Sandwich Board</Name>
1730
+ <Addresses>
1731
+ <Address>
1732
+ <AddressType>POBOX</AddressType>
1733
+ </Address>
1734
+ <Address>
1735
+ <AddressType>STREET</AddressType>
1736
+ </Address>
1737
+ </Addresses>
1738
+ <Phones>
1739
+ <Phone>
1740
+ <PhoneType>DDI</PhoneType>
1741
+ </Phone>
1742
+ <Phone>
1743
+ <PhoneType>DEFAULT</PhoneType>
1744
+ </Phone>
1745
+ <Phone>
1746
+ <PhoneType>FAX</PhoneType>
1747
+ </Phone>
1748
+ <Phone>
1749
+ <PhoneType>MOBILE</PhoneType>
1750
+ </Phone>
1751
+ </Phones>
1752
+ <UpdatedDateUTC>2009-09-22T01:34:21.367</UpdatedDateUTC>
1753
+ <IsSupplier>true</IsSupplier>
1754
+ <IsCustomer>false</IsCustomer>
1755
+ </Contact>
1756
+ <Contact>
1757
+ <ContactID>222a7399-64a0-4ab4-b11a-5c64cb4887be</ContactID>
1758
+ <ContactStatus>ACTIVE</ContactStatus>
1759
+ <Name>Sky TV</Name>
1760
+ <Addresses>
1761
+ <Address>
1762
+ <AddressType>POBOX</AddressType>
1763
+ </Address>
1764
+ <Address>
1765
+ <AddressType>STREET</AddressType>
1766
+ </Address>
1767
+ </Addresses>
1768
+ <Phones>
1769
+ <Phone>
1770
+ <PhoneType>MOBILE</PhoneType>
1771
+ </Phone>
1772
+ <Phone>
1773
+ <PhoneType>DDI</PhoneType>
1774
+ </Phone>
1775
+ <Phone>
1776
+ <PhoneType>DEFAULT</PhoneType>
1777
+ </Phone>
1778
+ <Phone>
1779
+ <PhoneType>FAX</PhoneType>
1780
+ </Phone>
1781
+ </Phones>
1782
+ <UpdatedDateUTC>2009-09-22T01:42:20.513</UpdatedDateUTC>
1783
+ <IsSupplier>true</IsSupplier>
1784
+ <IsCustomer>false</IsCustomer>
1785
+ </Contact>
1786
+ <Contact>
1787
+ <ContactID>9b837363-61d6-4982-8bbe-0dedda5c94d5</ContactID>
1788
+ <ContactStatus>ACTIVE</ContactStatus>
1789
+ <Name>Stagecoach</Name>
1790
+ <Addresses>
1791
+ <Address>
1792
+ <AddressType>POBOX</AddressType>
1793
+ </Address>
1794
+ <Address>
1795
+ <AddressType>STREET</AddressType>
1796
+ </Address>
1797
+ </Addresses>
1798
+ <Phones>
1799
+ <Phone>
1800
+ <PhoneType>FAX</PhoneType>
1801
+ </Phone>
1802
+ <Phone>
1803
+ <PhoneType>DEFAULT</PhoneType>
1804
+ </Phone>
1805
+ <Phone>
1806
+ <PhoneType>MOBILE</PhoneType>
1807
+ </Phone>
1808
+ <Phone>
1809
+ <PhoneType>DDI</PhoneType>
1810
+ </Phone>
1811
+ </Phones>
1812
+ <UpdatedDateUTC>2009-09-22T00:18:27.06</UpdatedDateUTC>
1813
+ <IsSupplier>false</IsSupplier>
1814
+ <IsCustomer>true</IsCustomer>
1815
+ </Contact>
1816
+ <Contact>
1817
+ <ContactID>f44e2527-2599-4dd7-be03-a7c654e023d3</ContactID>
1818
+ <ContactStatus>ACTIVE</ContactStatus>
1819
+ <Name>Staples</Name>
1820
+ <Addresses>
1821
+ <Address>
1822
+ <AddressType>POBOX</AddressType>
1823
+ </Address>
1824
+ <Address>
1825
+ <AddressType>STREET</AddressType>
1826
+ </Address>
1827
+ </Addresses>
1828
+ <Phones>
1829
+ <Phone>
1830
+ <PhoneType>DEFAULT</PhoneType>
1831
+ </Phone>
1832
+ <Phone>
1833
+ <PhoneType>FAX</PhoneType>
1834
+ </Phone>
1835
+ <Phone>
1836
+ <PhoneType>DDI</PhoneType>
1837
+ </Phone>
1838
+ <Phone>
1839
+ <PhoneType>MOBILE</PhoneType>
1840
+ </Phone>
1841
+ </Phones>
1842
+ <UpdatedDateUTC>2009-09-22T00:57:38.88</UpdatedDateUTC>
1843
+ <IsSupplier>true</IsSupplier>
1844
+ <IsCustomer>false</IsCustomer>
1845
+ </Contact>
1846
+ <Contact>
1847
+ <ContactID>e8d9ecd8-c17a-49c4-a445-708875ccb042</ContactID>
1848
+ <ContactStatus>ACTIVE</ContactStatus>
1849
+ <Name>Strategy Pod</Name>
1850
+ <EmailAddress>accounts@dummyco.com</EmailAddress>
1851
+ <Addresses>
1852
+ <Address>
1853
+ <AddressType>POBOX</AddressType>
1854
+ <AddressLine1>L13 Wilson House
1855
+ </AddressLine1>
1856
+ <AddressLine2>100 Railway Quay</AddressLine2>
1857
+ <City>Wellington</City>
1858
+ </Address>
1859
+ <Address>
1860
+ <AddressType>STREET</AddressType>
1861
+ </Address>
1862
+ </Addresses>
1863
+ <Phones>
1864
+ <Phone>
1865
+ <PhoneType>DEFAULT</PhoneType>
1866
+ </Phone>
1867
+ <Phone>
1868
+ <PhoneType>DDI</PhoneType>
1869
+ </Phone>
1870
+ <Phone>
1871
+ <PhoneType>MOBILE</PhoneType>
1872
+ </Phone>
1873
+ <Phone>
1874
+ <PhoneType>FAX</PhoneType>
1875
+ </Phone>
1876
+ </Phones>
1877
+ <UpdatedDateUTC>2009-09-22T22:24:20.957</UpdatedDateUTC>
1878
+ <ContactGroups>
1879
+ <ContactGroup>
1880
+ <Name>Annual Fees</Name>
1881
+ </ContactGroup>
1882
+ </ContactGroups>
1883
+ <IsSupplier>false</IsSupplier>
1884
+ <IsCustomer>true</IsCustomer>
1885
+ </Contact>
1886
+ <Contact>
1887
+ <ContactID>fcf59e28-ef45-47b9-be2c-1699ed93a7af</ContactID>
1888
+ <ContactStatus>ACTIVE</ContactStatus>
1889
+ <Name>Truxton Property Management</Name>
1890
+ <Addresses>
1891
+ <Address>
1892
+ <AddressType>POBOX</AddressType>
1893
+ </Address>
1894
+ <Address>
1895
+ <AddressType>STREET</AddressType>
1896
+ </Address>
1897
+ </Addresses>
1898
+ <Phones>
1899
+ <Phone>
1900
+ <PhoneType>MOBILE</PhoneType>
1901
+ </Phone>
1902
+ <Phone>
1903
+ <PhoneType>FAX</PhoneType>
1904
+ </Phone>
1905
+ <Phone>
1906
+ <PhoneType>DEFAULT</PhoneType>
1907
+ </Phone>
1908
+ <Phone>
1909
+ <PhoneType>DDI</PhoneType>
1910
+ </Phone>
1911
+ </Phones>
1912
+ <UpdatedDateUTC>2009-09-22T01:05:16.88</UpdatedDateUTC>
1913
+ <IsSupplier>true</IsSupplier>
1914
+ <IsCustomer>false</IsCustomer>
1915
+ </Contact>
1916
+ <Contact>
1917
+ <ContactID>aaf1960f-63b4-4640-9100-b151f27dd5ed</ContactID>
1918
+ <ContactStatus>ACTIVE</ContactStatus>
1919
+ <Name>Victor Power</Name>
1920
+ <Addresses>
1921
+ <Address>
1922
+ <AddressType>POBOX</AddressType>
1923
+ </Address>
1924
+ <Address>
1925
+ <AddressType>STREET</AddressType>
1926
+ </Address>
1927
+ </Addresses>
1928
+ <Phones>
1929
+ <Phone>
1930
+ <PhoneType>DEFAULT</PhoneType>
1931
+ </Phone>
1932
+ <Phone>
1933
+ <PhoneType>MOBILE</PhoneType>
1934
+ </Phone>
1935
+ <Phone>
1936
+ <PhoneType>DDI</PhoneType>
1937
+ </Phone>
1938
+ <Phone>
1939
+ <PhoneType>FAX</PhoneType>
1940
+ </Phone>
1941
+ </Phones>
1942
+ <UpdatedDateUTC>2009-09-22T00:41:12.113</UpdatedDateUTC>
1943
+ <IsSupplier>true</IsSupplier>
1944
+ <IsCustomer>false</IsCustomer>
1945
+ </Contact>
1946
+ <Contact>
1947
+ <ContactID>b7e7a895-87db-4b7c-b0b5-283a09f34714</ContactID>
1948
+ <ContactStatus>ACTIVE</ContactStatus>
1949
+ <Name>Vodafone</Name>
1950
+ <Addresses>
1951
+ <Address>
1952
+ <AddressType>STREET</AddressType>
1953
+ </Address>
1954
+ <Address>
1955
+ <AddressType>POBOX</AddressType>
1956
+ </Address>
1957
+ </Addresses>
1958
+ <Phones>
1959
+ <Phone>
1960
+ <PhoneType>DDI</PhoneType>
1961
+ </Phone>
1962
+ <Phone>
1963
+ <PhoneType>MOBILE</PhoneType>
1964
+ </Phone>
1965
+ <Phone>
1966
+ <PhoneType>DEFAULT</PhoneType>
1967
+ </Phone>
1968
+ <Phone>
1969
+ <PhoneType>FAX</PhoneType>
1970
+ </Phone>
1971
+ </Phones>
1972
+ <UpdatedDateUTC>2009-09-22T00:47:26.593</UpdatedDateUTC>
1973
+ <IsSupplier>true</IsSupplier>
1974
+ <IsCustomer>false</IsCustomer>
1975
+ </Contact>
1976
+ <Contact>
1977
+ <ContactID>c90ad84f-31c7-44d8-86a5-514da06d95d2</ContactID>
1978
+ <ContactStatus>ACTIVE</ContactStatus>
1979
+ <Name>WebGirls</Name>
1980
+ <Addresses>
1981
+ <Address>
1982
+ <AddressType>POBOX</AddressType>
1983
+ </Address>
1984
+ <Address>
1985
+ <AddressType>STREET</AddressType>
1986
+ </Address>
1987
+ </Addresses>
1988
+ <Phones>
1989
+ <Phone>
1990
+ <PhoneType>FAX</PhoneType>
1991
+ </Phone>
1992
+ <Phone>
1993
+ <PhoneType>DDI</PhoneType>
1994
+ </Phone>
1995
+ <Phone>
1996
+ <PhoneType>DEFAULT</PhoneType>
1997
+ </Phone>
1998
+ <Phone>
1999
+ <PhoneType>MOBILE</PhoneType>
2000
+ </Phone>
2001
+ </Phones>
2002
+ <UpdatedDateUTC>2009-09-21T23:06:17.353</UpdatedDateUTC>
2003
+ <IsSupplier>false</IsSupplier>
2004
+ <IsCustomer>true</IsCustomer>
2005
+ </Contact>
2006
+ <Contact>
2007
+ <ContactID>7939db38-1b00-4514-8ce0-031adae15779</ContactID>
2008
+ <ContactStatus>ACTIVE</ContactStatus>
2009
+ <Name>Wellington CAB</Name>
2010
+ <Addresses>
2011
+ <Address>
2012
+ <AddressType>POBOX</AddressType>
2013
+ </Address>
2014
+ <Address>
2015
+ <AddressType>STREET</AddressType>
2016
+ </Address>
2017
+ </Addresses>
2018
+ <Phones>
2019
+ <Phone>
2020
+ <PhoneType>MOBILE</PhoneType>
2021
+ </Phone>
2022
+ <Phone>
2023
+ <PhoneType>DDI</PhoneType>
2024
+ </Phone>
2025
+ <Phone>
2026
+ <PhoneType>FAX</PhoneType>
2027
+ </Phone>
2028
+ <Phone>
2029
+ <PhoneType>DEFAULT</PhoneType>
2030
+ </Phone>
2031
+ </Phones>
2032
+ <UpdatedDateUTC>2009-09-22T22:15:57.72</UpdatedDateUTC>
2033
+ <IsSupplier>false</IsSupplier>
2034
+ <IsCustomer>true</IsCustomer>
2035
+ </Contact>
2036
+ <Contact>
2037
+ <ContactID>49e075f9-5e4c-4e1a-9018-8e70aba9a13a</ContactID>
2038
+ <ContactStatus>ACTIVE</ContactStatus>
2039
+ <Name>Wellington City Council</Name>
2040
+ <Addresses>
2041
+ <Address>
2042
+ <AddressType>POBOX</AddressType>
2043
+ </Address>
2044
+ <Address>
2045
+ <AddressType>STREET</AddressType>
2046
+ </Address>
2047
+ </Addresses>
2048
+ <Phones>
2049
+ <Phone>
2050
+ <PhoneType>DDI</PhoneType>
2051
+ </Phone>
2052
+ <Phone>
2053
+ <PhoneType>DEFAULT</PhoneType>
2054
+ </Phone>
2055
+ <Phone>
2056
+ <PhoneType>MOBILE</PhoneType>
2057
+ </Phone>
2058
+ <Phone>
2059
+ <PhoneType>FAX</PhoneType>
2060
+ </Phone>
2061
+ </Phones>
2062
+ <UpdatedDateUTC>2009-09-21T23:00:33.193</UpdatedDateUTC>
2063
+ <IsSupplier>false</IsSupplier>
2064
+ <IsCustomer>true</IsCustomer>
2065
+ </Contact>
2066
+ <Contact>
2067
+ <ContactID>c53bbb3e-ee95-41f4-aa97-eaed8355054b</ContactID>
2068
+ <ContactStatus>ACTIVE</ContactStatus>
2069
+ <Name>Wellington Tank Services</Name>
2070
+ <Addresses>
2071
+ <Address>
2072
+ <AddressType>POBOX</AddressType>
2073
+ </Address>
2074
+ <Address>
2075
+ <AddressType>STREET</AddressType>
2076
+ </Address>
2077
+ </Addresses>
2078
+ <Phones>
2079
+ <Phone>
2080
+ <PhoneType>FAX</PhoneType>
2081
+ </Phone>
2082
+ <Phone>
2083
+ <PhoneType>MOBILE</PhoneType>
2084
+ </Phone>
2085
+ <Phone>
2086
+ <PhoneType>DDI</PhoneType>
2087
+ </Phone>
2088
+ <Phone>
2089
+ <PhoneType>DEFAULT</PhoneType>
2090
+ </Phone>
2091
+ </Phones>
2092
+ <UpdatedDateUTC>2009-09-22T20:35:20.97</UpdatedDateUTC>
2093
+ <IsSupplier>true</IsSupplier>
2094
+ <IsCustomer>false</IsCustomer>
2095
+ </Contact>
2096
+ <Contact>
2097
+ <ContactID>6255f81f-c935-4833-9bb5-44718f7326e2</ContactID>
2098
+ <ContactStatus>ACTIVE</ContactStatus>
2099
+ <Name>Whitcoulls</Name>
2100
+ <Addresses>
2101
+ <Address>
2102
+ <AddressType>POBOX</AddressType>
2103
+ </Address>
2104
+ <Address>
2105
+ <AddressType>STREET</AddressType>
2106
+ </Address>
2107
+ </Addresses>
2108
+ <Phones>
2109
+ <Phone>
2110
+ <PhoneType>MOBILE</PhoneType>
2111
+ </Phone>
2112
+ <Phone>
2113
+ <PhoneType>DEFAULT</PhoneType>
2114
+ </Phone>
2115
+ <Phone>
2116
+ <PhoneType>DDI</PhoneType>
2117
+ </Phone>
2118
+ <Phone>
2119
+ <PhoneType>FAX</PhoneType>
2120
+ </Phone>
2121
+ </Phones>
2122
+ <UpdatedDateUTC>2009-09-22T20:57:21.753</UpdatedDateUTC>
2123
+ <IsSupplier>false</IsSupplier>
2124
+ <IsCustomer>false</IsCustomer>
2125
+ </Contact>
2126
+ <Contact>
2127
+ <ContactID>4aa055ae-0e4e-4c76-a556-e94cf9309eb4</ContactID>
2128
+ <ContactStatus>ACTIVE</ContactStatus>
2129
+ <Name>Wilson Parking</Name>
2130
+ <Addresses>
2131
+ <Address>
2132
+ <AddressType>POBOX</AddressType>
2133
+ </Address>
2134
+ <Address>
2135
+ <AddressType>STREET</AddressType>
2136
+ </Address>
2137
+ </Addresses>
2138
+ <Phones>
2139
+ <Phone>
2140
+ <PhoneType>DDI</PhoneType>
2141
+ </Phone>
2142
+ <Phone>
2143
+ <PhoneType>DEFAULT</PhoneType>
2144
+ </Phone>
2145
+ <Phone>
2146
+ <PhoneType>MOBILE</PhoneType>
2147
+ </Phone>
2148
+ <Phone>
2149
+ <PhoneType>FAX</PhoneType>
2150
+ </Phone>
2151
+ </Phones>
2152
+ <UpdatedDateUTC>2009-09-22T01:32:24.463</UpdatedDateUTC>
2153
+ <IsSupplier>true</IsSupplier>
2154
+ <IsCustomer>false</IsCustomer>
2155
+ </Contact>
2156
+ <Contact>
2157
+ <ContactID>13126347-1975-4500-b69d-5279828bfe36</ContactID>
2158
+ <ContactStatus>ACTIVE</ContactStatus>
2159
+ <Name>Yates &amp; Waverly Solicitors</Name>
2160
+ <Addresses>
2161
+ <Address>
2162
+ <AddressType>POBOX</AddressType>
2163
+ </Address>
2164
+ <Address>
2165
+ <AddressType>STREET</AddressType>
2166
+ </Address>
2167
+ </Addresses>
2168
+ <Phones>
2169
+ <Phone>
2170
+ <PhoneType>FAX</PhoneType>
2171
+ </Phone>
2172
+ <Phone>
2173
+ <PhoneType>DDI</PhoneType>
2174
+ </Phone>
2175
+ <Phone>
2176
+ <PhoneType>DEFAULT</PhoneType>
2177
+ <PhoneNumber>9556432</PhoneNumber>
2178
+ <PhoneAreaCode>02</PhoneAreaCode>
2179
+ </Phone>
2180
+ <Phone>
2181
+ <PhoneType>MOBILE</PhoneType>
2182
+ </Phone>
2183
+ </Phones>
2184
+ <UpdatedDateUTC>2010-10-15T03:58:19.243</UpdatedDateUTC>
2185
+ <IsSupplier>false</IsSupplier>
2186
+ <IsCustomer>true</IsCustomer>
2187
+ </Contact>
2188
+ </Contacts>
2189
+ </Response>